Hello all,
I have searched quite a bit and didn't find exactly what I am looking for. As the title says, I need to remux .mp4 video files into .flv.
Here is a resumé of my workflow (don't hesitate to suggest modification):
- I load AVI files in avisynth to filter the file
- I encode to lossless AVI using virtualdub
- I load the lossless AVI in a simple .avs to open them using megui
- I use megui to encode to x264 aac .mp4 to the final quality
Before, the last step would have been to encode to VP6 MP3 .flv but I have discovered that our content management system (that NEEDS the .flv extension) will play flv made of x264 and aac streams.
So I'm adding a step, which is to remux those mp4 to flv. I am able to do that using ffmpeg with a quite simple command (that I lost track of...). The thing is that there is enough of files to remux to make it unpractical to remux them one by one in the command line.
That leads me here, asking for suggestions of something that can batch remux or a command line that could batch do it.
So far I have looked in ffmpeg documentation, unsuccessfully, and tried avidemux, which won't accept to copy x264 video to a flv container. I also browsed the tool list with no success.
Thanks for reading!
+ Reply to Thread
Results 1 to 7 of 7
-
-
1) place a copy of ffmpeg.exe in the same directory as your files to rewrap
2) write the following in in notepad (assuming you have x264/aac/mp4 files) , change extension of .txt to .bat, double click it
for %%a in ("*.mp4") do ffmpeg -i %%a -vcodec copy -acodec copy %%~na.flv
What filters in vdub are you using? You might be able to simplify everything by using avisynth filters (and avoid colorspace conversion) -
HA!
Awesome! This is exactly the type of operation I was looking for.
poisondeathray, thanks a lot. How the hell do you become so familiar with this stuff?
As for your question "What filters in vdub are you using?", the answer is none. I wrote that "I load AVI files in avisynth to filter the file" and I do that using avsp. Or maybe there is something I don't understand.
Thanks -
I learned through the same process of you: trying to fix/optimize streaming videos on some websites . So I'm just sharing the tidbits that helped me along the way
Sorry I misread it and thought you were filtering in vdub ... Then why are you using vdub or lossless intermediate at all ? Why not feed avs=>megui directly ? Or is it because you are doing 2pass encoding and want the lossless intermediate for the filters (to speed encoding) ?
You can actually batch encode using x264 through ffmpeg as well (or batch using x264.exe), but I'm not too familiar with the syntax for ffmpeg x264 encodingLast edited by poisondeathray; 24th Aug 2010 at 21:36.
-
Their are many reason for the intermediate lossless avi:
- My avisynth scripts run at 1.9 to 2.5 fps
- I do use 2 or 3 passes encoding with x264
- I use the lossless file to encode to my final product (the discussed mp4/flv) and a very high quality x264 avi for archiving purpose.
Hopefully I will get a new much more powerful computer soon, allowing me to skip that lossless step in some situations.
I should look for some ffmpeg/x264 gurus to apply your idea of batch encoding my avi to x264 flv, that would be quite an improvement of the workflow.
Thanks again for you help! -
I haven't done the batch encoding myself (x264 or x264 though ffmpeg), but I bookmarked some threads that have examples of the code in case for the future should I need to. You 'd probably just have to modify it a bit
http://doom10.org/index.php?topic=212.0
http://doom10.org/index.php?topic=218.0
http://rob.opendot.cl/index.php/useful-stuff/ffmpeg-x264-encoding-guide/
http://sites.google.com/site/linuxencoding/x264-ffmpeg-mapping
If you need help on the batch encoding you can post in those threads or start a new one specifically on batch encoding with x264 (or ffmpeg x264)
Cheers
Similar Threads
-
How to Use x264 Command Line
By Anonymous344 in forum Newbie / General discussionsReplies: 37Last Post: 2nd Nov 2013, 08:49 -
x264 command line for max quality within Bluray spec?
By Asterra in forum Video ConversionReplies: 5Last Post: 5th Apr 2012, 15:22 -
YouTube the hard way (x264 command line)
By Zacariaz in forum Newbie / General discussionsReplies: 0Last Post: 8th Jan 2012, 23:53 -
ffmpeg tga to x264 command line ?
By krohm in forum Video ConversionReplies: 71Last Post: 6th Jul 2010, 02:01 -
Command line tool to make x264 mkv samples
By lime- in forum EditingReplies: 4Last Post: 1st Nov 2008, 16:58