Hi all,
i was trying to convert some of my videos encoded in Xvid and MP3 vbr/cbr and as all of us know Tmpgenc couldn't handle it. tmpgenc has issues with ac3 and mp3s, i know that. but i wanted to know if there exists some kind of a plugin or codec which could merge with tmpgenc and could encode mp3s audio on-the-fly while converting the video so that i don't have to first extract it as .wav file. that is very tideous job and time consuming too.
as for ac3s i have solved the problem by installing TmpgEnc AC3 ACM Codec. now its able to handle ac3s with great ease! i hope theres some similar solution for mp3s too.
can someone pls help me out?
Thanks
+ Reply to Thread
Results 1 to 14 of 14
-
-
As a workaround you may convert in advance the MP3 vbr/cbr to wav using VirtualDub. Then open the video portion from the Xvid file and the audio from the WAV.
-
Load the avi files via avisynth instead (or frameserve out of virtualdub) so that tmpgenc is only seeing uncompressed video and audio.
Or do what I do, which is convert the audio separatelyRead my blog here.
-
ffdshow works rather well with TMPGEnc now. There was a time it didn't like Nov 2005.
Also a simple AVISynth script with the following should work just fine on all but the most poorely muxed AVI's.
AVISource("D:\Temp\test1.avi")
ConvertToRGB24()
EnsureVBRMP3Sync()
EDIT:
Furthermore, If you use AVISynth you can also do the resizing and add borders to you project requirements within the script. This not only allows you to use the better resize filters available to AVISynth but can also increase encoding speeds because TMPGEnc doesn't have to do it.
eg.
AVISource("D:\Temp\test1.avi")
EnsureVBRMP3Sync()
Lanczos4Resize(720,432)
AddBorders(72,72)
ConvertToRGB24()
Gives you a 720 x 576 input that you encode as FullScreen for a PAL DVD project.
You just need a Resize Calculator to know what figures to enter. Scripts for 4/3 16/9 for example would be different. -
Just make sure DirectShow MultiMedia FileReader is the highest priority VFAPI plug in in TMPGEnc's Options > Environmental Setting > VFAPI tab.
Then make sure ffdshow is set to decode MP3 in its config too.
As long as it's the highest priority MP3 decoder on your system it will be used.
You can confirm this by selecting Show tray icon in ffdshow's settings. Then in TMPGEnc load your video then navigate to the Advanced tab and double click on "source range". The ffdshow audio icon will show in taskbar if ffdshow is being used. -
One more thing! Im prepared to let you encode MP3 to MP2 within TMPGEnc without thinking too much about it. Try to atleast use TooLame for that!
But when I saw you also encode AC3 to MP2 I just could say nothing any longer.
Your really much better off trying to get into using other tools like VirtualDub, BeSweet, ffmpeg and the list goes on, to demux your AC3 audio. Encode just the video then mux the original AC3 back with your encoded video using TMPGEnc tools.
EDIT:
Offcourse if your making VCD SVCD you can't keep AC3 in those formats.
But for DVD/MPG Storage you should always be able to end up with an AC3 audio track rather than MP2. -
yes i have already tried that before and i tried it again. i set the ffdshow mp3 decoder to max. priority. in playing the video thru wmp the audio icon shows up in the tray bar but when i use tmpgenc theres no sign of that icon in the tray :/ this is so ridiculous.
so i think we r now left with the toolame option. how to use that one?
also the video which am stuck with is having mp3 audio stream. ac3 was another video which i solved by installing the ac3 compressor. -
-
Hey something else I just remembered about TMPGEnc.
The AC3-ACM decoder won't work if you set Directshow as the highest in the VFAPI settings... I think it only works with OpenDML higher than DirectShow VFAPI plug in.
Another good reason to learn how use AVISynth scripts or frameserve with Vdub and encode video and audio seperately. -
-
1. Dowmload and install avisynth. Associate the scipt files with Notepad
2. Download and unpack FitCD.
3 Download ReadAVS plugin for TMPGEnc and follow the instructions how to instal it.
4. load your source file in fitcd. Select the desired output resolution (righthand). Click Save script. It has extension .avs
5. Open the script in Notepad (double click) and add as last line
ConvertToRGB24()
Save it.
6. Open the avs as video source in TMPG. Open the same script as audio source in TMPG.
7. Encode as usually.
ReadAVS link: http://avisynth.org/warpenterprises/files/readavs.zip
Similar Threads
-
Trouble converting VBR Ogg to MP3
By Ryutso in forum AudioReplies: 2Last Post: 3rd May 2009, 14:19 -
WMV3 and WMSpeech to Divx and mp3 VBR
By logicom in forum Video ConversionReplies: 6Last Post: 19th Oct 2008, 16:31 -
what is the difference between VBR and CBR of a mp3 file?
By sumeshkri in forum AudioReplies: 3Last Post: 19th Sep 2008, 07:31 -
how to convert MP3 vbr to MP3 cbr?
By sumeshkri in forum AudioReplies: 2Last Post: 25th Aug 2008, 23:59 -
Avi.Net VBR MP3
By KnightHeart in forum Video ConversionReplies: 0Last Post: 8th Jul 2007, 06:40