The issue is definately with TMPGEnc.
I don't have this problem with MC.
Something is going wrong during the NTSC to PAL conversion.
Fozzee
+ Reply to Thread
Results 31 to 43 of 43
-
-
If you want to extract the audio first, then you simply tell AVISyth that no audio is present. You do this on your AVISource line like so:
AVISource("c:\folder\movie.avi",false)
The false parameter tells it to ignore the audio stream.
If you want to try it, you can also feed the WAV file directly into AVISynth as well. You do that with the WAVSource command. you then put the audio and video together using the AudioDub command like so.
video=AVISource("c:\folder\movie.avi",false)
audio=WAVSource("c:\folder\audio.wav")
AudioDub(video,audio)
The rest of the script would look like the first examples, going foward from the AVISource line like so:
video=AVISource("c:\folder\movie.avi",false)
audio=WAVSource("c:\folder\audio.wav")
AudioDub(video,audio)
AssumeFPS(25,True)
BicubicResize(720,576)
To answer your aspect ratio question, to be 'proper', a 1.85:1 video would be resized to 552 vertical, with 24 pixels of letterboxing (12 top and 12 bottom). A 1.77:1 video would just be resized to 576 vertical with no letterboxing. Most people just ignore the 24 pixels and resize both aspects to 576 (480 ntsc). Your call.Impossible to see the future is. The Dark Side clouds everything... -
I can't help you there. I'm not familiar with Procoder at all. You could always simply save your .AVS as a new AVI file in VirtualDub, but that kind of takes away the need to frameserve in the first place.
Impossible to see the future is. The Dark Side clouds everything... -
Well I haven't solved the TMPGenc situation.
So it looks like i'll have to use Mainconcept from now on.
But at least my DVDs are the right aspect ratio and play smoothly now. Even if they aren't quite as good looking as with Procoder.
Thanks for your help DJ Rumpy.
Can I ask another bit of advice if you were wanting to crop a movie (e.g. take away a little from the top or bottom) how would you adjust the script??
Cheers
Fozzee -
I'm going to assume you mean something like converting a 4:3 fullscreen movie to 16:9 widescreen. If not, just let me know.
The change to the script is simple. You only have to crop your video, before resizing. You would use the Crop( left,top,right,bottom) command. The values you place in the left,top,right,bottom affect how much is cropped from the corresponding side.
If you wanted to crop 60 from the top, and 60 from the bottom, your crop command would look like this:
Crop(0,60,0,-60)
For this example, since your converting an NTSC source to pal, you might want to convert a 4:3 movie to 16:9, by cropping a total of 120 pixels from the top and bottom combined. That would convert an NTSC fullscreen 4:3 video to a widescreen 1.77:1 (16:9) video.
video=AVISource("c:\folder\movie.avi",false)
audio=WAVSource("c:\folder\audio.wav")
AudioDub(video,audio)
AssumeFPS(25,True)
Crop(0,60,0,-60)
BicubicResize(720,576)
Just change the crop values to whatever you need. The right and bottom can use negative numbers, except when the value is zero, just like in our example.Impossible to see the future is. The Dark Side clouds everything... -
Hey DJ
I've been doing some reading reference mpg ntsc 29.976 to mpg pal 25.000.
Is it as easy to write a script to achieve this?
If so could you give me some pointers.
I know many people will say why do I need to do it in the UK.
Well its because my friend's playstation will only play Pal DVDs.
Cheers
Fozzee -
Converting directly from 29.97 fps to 25 fps just looks plain ugly/jerky/choppy. Only convert NTSC to PAL if your video source is telecined. If it's telecined, you can revert the video back to it's true 23.976 fps, and from there, simply speed it up by 1 frame per second. I do these all the time with television captures. I use the DGraft's DECOMB.DLL to perform inverse telecine (convert from 29.97 to 23.976) on my captures. You can find it on google, as DGraft's site no longer appears to be at http://shelob.mordor.net/dgraft
If you can't find it, let me know. You can also look for at at http://www.avisynth.org.
Telecide(guide=1,chroma=true,mm=2)
Decimate(cycle=5)
AssumeFPS(23.976,True)
ResampleAudio(48000)
For your purposes, if the above doesn't work, remove the mm=2 parameter. The rest should give you an inverse telecined output. Since you want to convert it to PAL, the ASsumeFPS would be changed to 25 instead of 23.976Impossible to see the future is. The Dark Side clouds everything... -
Originally Posted by DJRumpy
Cheers
Fozzee -
Heres a funny one for you.
I have a 1.85:1 aspect ratio avi.
But it has 40 pixels top and bottom of black bars!!
Should I crop these and add 72 top and bottom??
Or widescreen it leaving the bars there??
Cheers
Fozzee -
Originally Posted by DJRumpy
Cheers
Fozzee -
I always have to do the math in NTSC, and then just convert to PAL.
A 2.35:1 NTSC video is 360 pixels high, with 120 pixels of letterboxing: 60 to and 60 bottom or 360 + 60 + 60 = 480.
To convert NTSC to PAL, just multiply your vertical by 1.2.
360 * 1.2 = 432
You PAL vertical for 2.35 video would be 432.
576 - 432 = 144 for letterboxing
144 / 2 = 72 Top and 72 BottomImpossible to see the future is. The Dark Side clouds everything... -
Thanks DJ you've been a great help. This frameserving has changed my finshed article to something I'm happy with now
Especially the assume fps part of it.
Once again thanks for your input.
Fozzee
Similar Threads
-
Pls help! Best way to convert NTSC VHS (captured using PAL VCR) to NTSC DVD
By rairjordan in forum Capturing and VCRReplies: 33Last Post: 28th Nov 2013, 11:33 -
when Pal dvd has correct Ntsc audio (Pal>Ntsc conver)
By spiritgumm in forum Video ConversionReplies: 15Last Post: 13th Oct 2011, 12:57 -
PAL to NTSC, NTSC to PAL framerate conversion?
By Baldrick in forum Video ConversionReplies: 44Last Post: 5th Dec 2009, 23:31 -
Creating NTSC Blu ray DVD From PAL TS Files. need help with NTSC format
By Rick0725 in forum Authoring (Blu-ray)Replies: 0Last Post: 9th Apr 2009, 21:43 -
NTSC to PAL, PAL to NTSC framerate conversion?
By Baldrick in forum Video ConversionReplies: 23Last Post: 23rd Apr 2008, 11:19