Muxing several files with Yamb incl. chapter filesHi guys,
got the following problem: I wanted to merge a streaming video, which had the video-files splitted as 1 minute files, together with the audio file. First, I did flv extract on every file. Then I wanted to combine them with Yamb. Here's the log: Code:
[15:34:03] : Yamb 2.1.0.0 beta 2 started !!! Code:
Error importing 1000000.avi#video:fps=25.000: Feature Not Supported |
Re: Muxing several files with Yamb incl. chapter filesI would use concatenate feature of (the newest version of) ffmpeg.
Use the files in their original flv container if possible. Create a text file "mylist.txt" with all the files you want to have concatenated in the following form ( Lines starting with a dash are ignored ) : mylist.txt: Code:
# this is a comment Copy the mylist.txt file into the same directory with ffmpeg and all of the files to be concatenated. Code:
ffmpeg -f concat -i mylist.txt -c copy concatenated_output.flv ----- Edit: I left out a step that I had forgotten about that applies to be-at.tv flv videos only. Before concatenating, run each flv through ffmpeg in order to strip the timecodes (so that each video starts at 00:00, rather than an 01:01, or 02:01, etc.) For example: Code:
ffmpeg -i "1000.002.flv" -vcodec copy -acodec copy "002.flv" |
Re: Muxing several files with Yamb incl. chapter filesHey blimey,
thanks for your help. There's one problem with be-at.tv, that I don't know if it is considered in your solution: At be-at.tv, the videofiles often have missing frames whilte the audiofiles are correct. This is why I wanted to use the chapter files of FLVExtract to keep the original synchronity. How would ffmpeg know the original timeframes if the file itself would be e.g. only 57 seconds due to missing frames instead of one minute? |
Re: Muxing several files with Yamb incl. chapter filesThere were no "missing frames" in the sample I tried from your other thread, ben klock - like klockwork (Session003311).
Provide a link to a session with "missing frames". |
Re: Muxing several files with Yamb incl. chapter filesThanks a lot, I'll try it later with a session that I definitely know of missing frames. :-)
|
All times are GMT -6. The time now is 04:41 AM. |