Ticket #1199 (open enhancement)
Playlist support
| Reported by: | burek | Owned by: | |
|---|---|---|---|
| Priority: | wish | Component: | avformat |
| Version: | git-master | Keywords: | |
| Cc: | Blocked By: | ||
| Blocking: | Reproduced by developer: | no | |
| Analyzed by developer: | no |
Description
Would it be too difficult to add the playlist support in FFmpeg in such way that it would help replace using "for", "while" and other loops, in batch scripts? Here is an example of possible implementation:
ffmpeg -f playlist -i list.m3u -acodec copy -vcodec copy -f mp4 %1.new.mp4
This would have an effect of looping through the entire list.m3u file, reading each file from the playlist and remuxing it into mp4 format, saving it to a new file name, using a file name pattern (just like -f image2 does with "img%03d.png"), where %1 might represent the original file name.
I'm willing to make a patch for this enhancement, I just need a little push in the right direction. Which files should I look at, to edit them? I'll try to write it and submit the patch here.
This enhancement could also be used with ffplay, to play a playlist instead of one file.
Change History
comment:2 Changed 3 months ago by richardpl
- Status changed from new to open
- Version changed from unspecified to git-master
- Component changed from undetermined to avformat
comment:3 in reply to: ↑ description Changed 3 months ago by cehoyos
Replying to burek:
This enhancement could also be used with ffplay, to play a playlist instead of one file.
Doesn't this work with the concat demuxer?



I presume this was never implemented (yet)? I.e. ffmpeg *shouldn't* yet work for
$ ffplay -i http://audio-ogg.ibiblio.org:8000/wcpe.ogg.m3u
?
(for followers, in the meantime you can just parse m3u files manually: http://ffmpeg.gusari.org/viewtopic.php?f=12&t=614)