Have you ever been able to open an AVI file with h.264 video with Gif Movie Gear? I ask because many editors cannot do so. Installing x264vfw might help.
What do you mean by "I've tried four or five batch files and none of them have worked?" Are you saying the muxing failed to produce a AVI files? Or that the resulting AVI files could not be opened by your editor? Can the be played by VLC or any of the other advanced media players?
+ Reply to Thread
Results 211 to 216 of 216
-
-
Yeah, I forgot Gif Movie Gear won't open lagarith avi or uncompressed avi that it created
I think I've got it worked out with the batch files. The MKV copy to AVI won't work but I made one to convert mkv to xvid and it works just fine.
I also made one to convert the AVIs that I got from MKVcleaver to xvid.
Code:for %%a in ("*.mkv") do ffmpeg -i "%%a" -c:v libxvid -preset slow -crf 20 "newfiles\%%~na.avi" pause
Code:for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libxvid -preset slow -crf 20 "newfiles\%%~na.avi" pause
-
Yes, but by converting to xvid you are losing quality. Did you try installing x264vfw? That will allow many programs to open AVI files with h.264 video.
Some things to note:
64 bit programs require 64 bit codecs. 32 bit programs require 32 bit codecs. 64 bit programs cannot use 32 bit codecs. 32 bit programs cannot use 64 bit codecs.
There are two main video systems in Windows: the older Video For Windows (VFW), and DirectShow (DS). Some programs can use only one, some both. VFW codecs are not accessible to DS, and vice versa. Most programs use VFW to deal with AVI files, DS for MOV, MP4, and MKV. So you may need to install both VFW and DS codecs, both 32 and 64 bit to be sure all your programs can use those codecs. Ie, you need to install four versions of the codecs (some do this automatically, some you may have to download individual version). In addition to these Windows system installed codecs, some programs (like ffmpeg and VLC media player) use their own internal codecs. -
-
Yeah, the converted files using the settings above look like crap. I just checked one of the demuxed h264.avi files from MKVcleaver in Gif Movie Gear and it opened right up. I must've tried to open the .h264 file before.
I don't remember what settings I used when using the external encoder feature in Virtualdub for mpeg4. -
Hello, thank you for the guide, but is there a way to make ffmpeg recognize * or %d in a batch file for a sequence of PNG images?
Code:ffmpeg -framerate 10 -i Anime\*.png Animation.mp4 Could find no file with path 'Anime\*.png' and index in the range 0-4 Anime\*.png: No such file or directory
Code:ffmpeg -framerate 10 -i Anime\%d.png Animation.mp4 Anime\d.png: No such file or directory
Update: I found a solution. If you want to use %d as a wildcard in a batch file, you need to escape it by using %% instead of %:
Code:ffmpeg -framerate 10 -i Anime\%%d.png Animation.mp4
Last edited by amymor; 1st Dec 2023 at 13:00.
Similar Threads
-
Best Way To Batch Convert DVR-MS and WTV Files
By dj4monie in forum Video ConversionReplies: 39Last Post: 25th Jun 2012, 19:17 -
Best way to batch convert xvid/avi files to mkv/x264 files?
By gaikokujinkyofusho in forum Video ConversionReplies: 1Last Post: 13th Jan 2012, 07:31 -
batch convert .mpg (MPEG2) files?
By shun in forum Video ConversionReplies: 2Last Post: 8th Jan 2009, 09:44 -
Hi, need a program to batch multiplex.
By mmdmmd in forum AudioReplies: 2Last Post: 18th Oct 2008, 14:50 -
Hi all, I need program to batch de-multiplex mpg files with 2 audio tracks
By mmdmmd in forum AudioReplies: 4Last Post: 14th Oct 2008, 16:57