summaryrefslogtreecommitdiffstats
path: root/DOCS/edl-mpv.rst
Commit message (Collapse)AuthorAgeFilesLines
* Drop libquvi supportwm42014-10-251-3/+3
| | | | | | | | | | | No development activity (or even any sign of life) for almost a year. A replacement based on youtube-dl will probably be provided before the next mpv release. Ask on the IRC channel if you want to test. Simplify the Lua check too: libquvi linking against a different Lua version than mpv was a frequent issue, but with libquvi gone, no direct dependency uses Lua, and such a clash is rather unlikely.
* DOCS/edl-mpv: minor clarificationwm42014-10-121-1/+1
|
* edl: extend with chapter timestampswm42014-02-191-1/+17
| | | | | | Example see edl-mpv.rst. What is this useful for? No clue...
* docs: edl: minor correctionswm42013-12-051-4/+5
|
* timeline: reject mplayer2 EDL files, change EDL headerwm42013-11-211-3/+4
| | | | | | | | | | | This was forgotten when the parser for mplayer2 EDL files was removed. Change the header of the mpv EDL format to include a '#', so a naive parser could skip the header as comment. (Maybe this is questionable; on the other hand, if it can be simpler, why not.) Also, strip the header in demux_edl.c before passing on the data, so the header check doesn't need to be duplicated in tl_mpv_edl.c.
* timeline: add edl:// URIswm42013-11-191-0/+9
| | | | | Questionable change from user perspective, but internally needed to implement the next commit. Also useful for testing timeline stuff.
* timeline: add new EDL formatwm42013-11-191-0/+94
Edit Decision Lists (EDL) allow combining parts from multiple source files into one virtual file. MPlayer had an EDL format (which sucked), which mplayer2 tried to improve with its own format (which sucked). As logic demands, mpv introduces its very own format (which sucks). The new format should actually be much simpler and easier to use, and its implementation is simpler and smaller too.