Difference between revisions of "Talk:MediaControlAPI"
Line 42: | Line 42: | ||
I also think we should integrate these, probably using the Stream and Media Information facility. This needs some polishing | I also think we should integrate these, probably using the Stream and Media Information facility. This needs some polishing | ||
− | [[OlivierAubert]] Funny, I have already seen this kind of resistance to XML. I agree that it is not the | + | [[OlivierAubert]] Funny, I have already seen this kind of resistance to XML. I agree that it is not the solution of all problems, but rather than defining yet another struct in C, for a simple use (with no performance concerns), I prefer to use a versatile format. Reminds me of my proposal to use SVG as main interface to process subtitles : using SVG (or just a subset), you can specify any parameter for you subtitles (color, background, position, font, ...). But instead of this, we are seeing functions taking a number of parameters, and struct for holding them. |
== Playlist == | == Playlist == |
Revision as of 10:23, 14 December 2005
Discussion about API
OlivierAubert And isn't that too VLC-specific ? The rest of the API (minus suggested VLM, which is clearly identified) is fairly generic. We could move vlc specific features in an 'extra' module.
Zorglub The generic part is actually very worrying to me. I think we anyway should definitely have "VLC" in the symbol names, to avoid any clashes. "mediacontrol" is far too generic to me.
Littlejohn At the moment the opportunity an external developer has to use this interface is very little. There are coding issues making the interface usable only within the VLC tree. See this bug I filed.
OlivierAubert I would like to precise the context that lead me to implement this API: I am developping an application that needs to control some video player. I do not want it to be bound to a single player, so I first defined a control API, reusing some OMC specification, and then wrote the code to implement that interface on some players. I did that (at python level, using rc communication) for mplayer, xine and (at C level) for VLC. So this API has been defined based on user/programmer needs, rather than on VLC functionalities exposed by some interface. I do not want to have to rewrite my application when I finally find the time to write the same control interface for the avidemux engine for instance (in order to get frame-by-frame positioning.
In an ideal world, there would be a well-established standard API, that would be supported by all major linux (and more) players : VLC, xine, player... The mediacontrol aims to be a start at this.
Zorglub Here is what I propose :
- We keep providing the normal LibVLC API in vlc/vlc.h
- in vlc/vlc.h we also provide a "VLC_Control" API which gives access to much more data and uses a semi-object concept (with exceptions, playlist object, stream object, ...) It can include some VLC-specific things (VLM, Filters, ...)
- We provide the "VLC implementation of mediacontrol" in vlc/control.h which is a wrapper around a common set of functions from VLC_Control. The symbols are prefixed with vlc_ to avoid symbol clashes, but nothing should be VLC specific here
- The python binding provides access to vlc.MediaControl (no clash problem here as pyton (and java too) provide the notion of namespace)
Littlejohn Here is a proposed plan to accomplish the points zorglub listed:
- rewrite playlist management to solve current issues with playlist (see the playlist section)
- factorize the functions of all interesting (stream, etc) objects in vlc and write the VLC_Control API
- implement mediacontrol interface using the VLC_Control API
- complete support of mediacontrol in bindings
Since I'm not still very accostumed with VLC internals I cannot say how to proceed with every object.
API Design
OlivierAubert For me, the mediacontrol API is a generic API, independent from the player. If the player does not support some feature (like position parameter to pause and resume), then the API should try its best to have a coherent behaviour.
Littlejohn Well, I think even if the interface is generic it has to call functions contained in the player. For example the position parameter for pause and resume should be implemented in the player and then called by the mediacontrol interface. In this way we have to opportunity to enrich the player and ease maintainance of the interface (otherwise features in the interface could overlap with those in the player or changes in the player could break the interface).
Stream Information
- mediacontrol_get_stream_information Return synthetized information (position, url, status), so that applications can quickly get it (Advene for instance calls this method every 100ms)
- mediacontrol_get_video_information Return misc. information about the video (aspect ratio, dimensions, bitrate, codec, author, etc). The output could be transmitted in some generic format (XML?)
Zorglub: I'm not too keen on introducing some XML or stuff like that in the API. IMHO, information should be returned in structured programmatic way. The caller can then generate XML if it wants too. I also think we should integrate these, probably using the Stream and Media Information facility. This needs some polishing
OlivierAubert Funny, I have already seen this kind of resistance to XML. I agree that it is not the solution of all problems, but rather than defining yet another struct in C, for a simple use (with no performance concerns), I prefer to use a versatile format. Reminds me of my proposal to use SVG as main interface to process subtitles : using SVG (or just a subset), you can specify any parameter for you subtitles (color, background, position, font, ...). But instead of this, we are seeing functions taking a number of parameters, and struct for holding them.
Playlist
OlivierAubert Could be transformed into a Playlist object (returned by MediaControl.playlist), that would feature the corresponding methods: add, clear, next, prev, play, sort...
Littlejohn This is ok for me. Maybe we could apply this abstraction to other parts of the interface, ie having a Stream object and so on.
Littlejohn The current playlist implementation makes it impossible to correctly honor the position argument in mediacontrol_<start|stop|pause|etc>. The problem is that moving through the playlist implies playing the item we moved to. It should be possible to move in the playlist without automatically playing the item. Doing so we have the possibility to add the "start-time" option before starting to play. We could think about two ways of doing so: either let playlist_Next() accept a position parameter or make playlist_Next not to start playing. So playing should be possible only from playlist_Play and playlist_Play should accept the position parameter.