gspot tells me that my avi file has a frame rate of 29.413 i know that it's source was laser disc
i follow this tutorial to convert my avi files
https://www.videohelp.com/forum/userguides/186739.php#3
it works every time however it only tells you how to set up tmpge when the frame rates are 25, 23,976 and 29,97
can anyone tell me if i should follow the setup for either pal or ntsc or if there is a completely different way to do it?
thanks
+ Reply to Thread
Results 1 to 15 of 15
-
-
well what are you trying to do?..... a VCD , DVD or what?......let us start there and what kind of file do u have..
-
Originally Posted by d4funky1
any ideas? -
I get odd frame rates like that when I capture. Instead of 29.970fps I usually get 29.966 or 29.965
So adjust it in an AviSynth AVS script using this line:
Code:AssumeFPS(29.970, true)
In this instance it is a good idea to set up TMPGEnc to link to SSRC because the audio will need to have the sampling rate adjusted just a wee bit and SSRC does a great job of it.
- John "FulciLives" Coleman
P.S.
A simple complete AviSynth script might look like this:
Code:avisource("D:\movie.avi") AssumeFPS(29.970, true)
"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
ok
i converted the file with tmpge and what happens is this:
the video plays fine however the audio seems to slow down then speed up throughout???
i have tried the disc in my pc and it plays fine
in my dvd player it has the problem
i have tried on two other dvd players 1 played fine and the other played with the problem?
any ideas?
thanks -
Originally Posted by d4funky1
Make sure you use SSRC as an audio plug-in for TMPGEnc and also use PCM WAV audio when you encode. Thos works best doing this kind of conversion. You can then convert the PCM WAV to AC-3 or MP2 later using a variety of sound tools such as BeSweet etc.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
I wouldn't is besweet to encode audio files to ac3. Its not certified by dolby digital and on some players, the video will skip. If you want to actually encode audio to ac3, use a certified encoder like Softencode.
I use to encode my audio to ac3 with besweet until I bought my $600 dvd player and the video would skip. Encoded the sound again with Softencode and the problem was solved. -
Originally Posted by awhitney
Not only is Sonic Foundry Soft Encode no longer made but when it was available for purchase the price was around $1,000.00 USD if not more!
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
Originally Posted by jimmalenko
AviSynth is not that hard ... this is the complete script I use with most captures. Please note that Convolution3D is a noise filter that works wonders:
Code:LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec3.dll") LoadPlugin("convolution3d.dll") AviSource("D:\capture.avi") Trim(717,11507) crop(4,4,-4,-12) AddBorders(8,8,8,8) SeparateFields() even = SelectEven(last).Convolution3D (0, 6, 10, 6, 8, 2.8, 0) odd = SelectOdd(last).Convolution3D (0, 6, 10, 6, 8, 2.8, 0) Interleave(even, odd) weave() LanczosResize(352,480) AssumeFPS(29.970, true)
The Trim command is imported using the AviSynth scripting feature built-in to VirtualDubMod
Also I think the first line is not needed with AVI source files but I leave it there all the time as habit since I also work alot with DVD2AVI D2V project files.
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
-
now this all sounds great but you must remember that this is a newbie forum and yes you've guessed it i'm a newbie.
can anyone steer me in a direction of a tutorial or where abouts i use avisynth?
it all sounds as though it will solve my problem but a step by step guide would be great to show this beginner how it's done
thanks -
Originally Posted by d4funky1
if u juz wanna learn more about Avisynth this might help you:
http://www.avisynth.org/ -
Originally Posted by d4funky1
Install AviSynth 2.5x I think 2.54 is the newest version. That is pretty simple.
Then open NOTEPAD and type this in:
Code:avisource("D:\movie.avi") AssumeFPS(29.970, true)
Simple still right?
Now save the file but make sure you change the option entitled SAVE AS TYPE to ALL FILES instead of the default of TEXT DOCUMENTS (*.txt) and be sure when you type in the file name you add .avs at the end of it so it looks like this ---> filename.avs
Now you have an AviSynth AVS file that you can open directly into TMPGEnc as well as other programs such as VirtualDubMod or CINEMA CRAFT ENCODER etc.
If you are using TMPGEnc I suggest you set it up to use SSRC which is simple to do (look under the AUDIO TAB in the set-up portion of the program) and convert to LPCM WAV audio. This seems to work best. You can always afterwards convert the LPCM WAV audio file to MP2 or AC-3
See isn't that simple
- John "FulciLives" Coleman"The eyes are the first thing that you have to destroy ... because they have seen too many bad things" - Lucio Fulci
EXPLORE THE FILMS OF LUCIO FULCI - THE MAESTRO OF GORE
Similar Threads
-
convert .mkv with non-standard frame rate
By Conrad007 in forum Video ConversionReplies: 2Last Post: 20th Jan 2011, 11:50 -
Trying to convert World Cup game to DVD, have a ? about frame rate
By Roge in forum Authoring (DVD)Replies: 8Last Post: 10th Sep 2010, 06:06 -
Bit Rate And Frame Rate
By bharathi_n_r in forum Video ConversionReplies: 2Last Post: 30th Nov 2007, 05:48 -
Frame rate conversion by changing frame count
By asmaa in forum Video ConversionReplies: 2Last Post: 1st Aug 2007, 10:15 -
Is there a program that can safely convert variable frame rate videos?
By darkzero297 in forum Video ConversionReplies: 1Last Post: 17th Jul 2007, 20:01