VideoHelp Forum
+ Reply to Thread
Results 1 to 13 of 13
Thread
  1. Member
    Join Date
    May 2006
    Location
    United States Of America
    Search Comp PM
    Hi again,

    I have an AVI that's not only PAL, but also looks beyond terrible. I'd like to know if there's a way (preferably using AviSynth) to convert the video to NTSC, but in doing so sacrificing as little of the video's integrity as possible.

    Which method(s) would be the best/most recommended? I'm not sure what to put in to my script.

    I doubt it's really of any use, but in case anyone cares, here's the MediaInfo data:

    -
    Code:
    General
    Complete name                    : C:\FILE.avi
    Format                           : AVI
    Format/Info                      : Audio Video Interleave
    File size                        : 688 MiB
    Duration                         : 1h 22mn
    Overall bit rate                 : 1 159 Kbps
    Writing application              : MEncoder Sherpya-SVN-r26446-4.2.3
    Writing library                  : MPlayer
    
    Video
    ID                               : 0
    Format                           : MPEG-4 Visual
    Format profile                   : Simple@L3
    Format settings, BVOP            : No
    Format settings, QPel            : No
    Format settings, GMC             : No warppoints
    Format settings, Matrix          : Default (H.263)
    Codec ID                         : XVID
    Codec ID/Hint                    : XviD
    Duration                         : 1h 22mn
    Bit rate                         : 1 024 Kbps
    Width                            : 720 pixels
    Height                           : 576 pixels
    Display aspect ratio             : 5:4
    Frame rate                       : 25.000 fps
    Standard                         : PAL
    Color space                      : YUV
    Chroma subsampling               : 4:2:0
    Bit depth                        : 8 bits
    Scan type                        : Progressive
    Bits/(Pixel*Frame)               : 0.099
    Stream size                      : 608 MiB (88%)
    Writing library                  : XviD 1.1.2 (UTC 2006-11-01)
    
    Audio
    ID                               : 1
    Format                           : MPEG Audio
    Format version                   : Version 1
    Format profile                   : Layer 3
    Mode                             : Joint stereo
    Mode extension                   : MS Stereo
    Codec ID                         : 55
    Codec ID/Hint                    : MP3
    Duration                         : 1h 22mn
    Bit rate mode                    : Variable
    Bit rate                         : 122 Kbps
    Channel(s)                       : 2 channels
    Sampling rate                    : 44.1 KHz
    Stream size                      : 72.5 MiB (11%)
    Alignment                        : Aligned on interleaves
    Interleave, duration             : 26 ms (0.65 video frame)
    Interleave, preload duration     : 515 ms
    -
    Quote Quote  
  2. Member hech54's Avatar
    Join Date
    Jul 2001
    Location
    Yank in Europe
    Search PM
    Originally Posted by takearushfan View Post
    Which method(s) would be the best/most recommended?
    None. It's not worth the effort.
    Quote Quote  
  3. Member edDV's Avatar
    Join Date
    Mar 2004
    Location
    Northern California, USA
    Search Comp PM
    If you don't like the PAL why do you want to convert and lower quality more?
    Recommends: Kiva.org - Loans that change lives.
    http://www.kiva.org/about
    Quote Quote  
  4. Banned
    Join Date
    Jun 2004
    Location
    ®Inside My Avatar™© U.S.
    Search Comp PM
    Originally Posted by edDV View Post
    If you don't like the PAL why do you want to convert and lower quality more?
    I was thinking the same thing, but then i thought maybe i misread it (or he miswrote)

    Originally Posted by takearushfan View Post
    I have an AVI that's not only PAL, but also looks beyond terrible.
    If it looks terrible as the original PAL AVI (sic) then what makes you think it will look better converting it to NTSC ?
    Quote Quote  
  5. Member AlanHK's Avatar
    Join Date
    Apr 2006
    Location
    Hong Kong
    Search Comp PM
    Originally Posted by takearushfan View Post
    I have an AVI that's not only PAL, but also looks beyond terrible. I'd like to know if there's a way (preferably using AviSynth) to convert the video to NTSC
    Code:
    AVISource("C:\FILE.avi")
    EnsureVBRMP3sync()
    AssumeFPS("ntsc_film", sync_audio=true)
    #next two lines make DVD compliant, skip if not needed.
    ResampleAudio(48000)
    LanczosResize(720,480)
    Quote Quote  
  6. Member
    Join Date
    May 2006
    Location
    United States Of America
    Search Comp PM
    Originally Posted by AlanHK View Post
    Originally Posted by takearushfan View Post
    I have an AVI that's not only PAL, but also looks beyond terrible. I'd like to know if there's a way (preferably using AviSynth) to convert the video to NTSC
    Code:
    AVISource("C:\FILE.avi")
    EnsureVBRMP3sync()
    AssumeFPS("ntsc_film", sync_audio=true)
    #next two lines make DVD compliant, skip if not needed.
    ResampleAudio(48000)
    LanczosResize(720,480)
    Thanks you!

    Guys, I didn't say I believe that it'll look better by converting it. I merely said it already looks bad. So yes, I know that if anything it'll only look worse, but y'all don't necessarily know what my reasons are
    Quote Quote  
  7. I'd leave it at 25 fps and add pulldown flags with DgPulldown (assuming you're making a DVD). Then you don't have to change the audio length.
    Quote Quote  
  8. Man of Steel freebird73717's Avatar
    Join Date
    Dec 2003
    Location
    Smallville, USA
    Search PM
    Originally Posted by jagabo View Post
    I'd leave it at 25 fps and add pulldown flags with DgPulldown (assuming you're making a DVD). Then you don't have to change the audio length.
    I agree. If dvd or mpeg is your end product then this is the simplest and most efficient way of doing a pal->ntsc conversion.
    Donadagohvi (Cherokee for "Until we meet again")
    Quote Quote  
  9. Member AlanHK's Avatar
    Join Date
    Apr 2006
    Location
    Hong Kong
    Search Comp PM
    Originally Posted by freebird73717 View Post
    Originally Posted by jagabo View Post
    I'd leave it at 25 fps and add pulldown flags with DgPulldown (assuming you're making a DVD). Then you don't have to change the audio length.
    I agree. If dvd or mpeg is your end product then this is the simplest and most efficient way of doing a pal->ntsc conversion.
    Well if I may disagree, the pulldown hack is a good way to convert a MPEG2 file as it avoids reencoding.

    But when your source is AVI or MKV, etc, and you're running it through Avisynth to encode to MPEG2, AssumeFPS is the simplest. The only issue is the audio is resampled and the speed is changed by a few percent -- but if your audio wasn't 48000Hz AC3 in the first place (and this was 44100Hxz MP3) you have to resample regardless.

    Anyway, quite likely the original source was 24 fps film, the 25 fps PAL was probably just speeded up, so going to 23.976fps is getting closer to the original if that's a consideration. I find it imperceptible myself.
    Quote Quote  
  10. Originally Posted by AlanHK View Post
    Anyway, quite likely the original source was 24 fps film, the 25 fps PAL was probably just speeded up, so going to 23.976fps is getting closer to the original if that's a consideration. I find it imperceptible myself.
    I sometimes notice when the audio is sped up and the pitch has changed. Especially with voices or music that I know well.
    Quote Quote  
  11. Man of Steel freebird73717's Avatar
    Join Date
    Dec 2003
    Location
    Smallville, USA
    Search PM
    I guess I missed the part where he said he preferred the avisynth way. After seeing that I guess what what Alan suggested would be appropriate.

    Honestly I don't even mess with this stuff anymore anyway. I just play my vids through a networked media player. No conversion necessary.
    Donadagohvi (Cherokee for "Until we meet again")
    Quote Quote  
  12. Banned
    Join Date
    Oct 2004
    Location
    Freedonia
    Search Comp PM
    Originally Posted by takearushfan View Post
    y'all don't necessarily know what my reasons are
    True enough but my feeling is that unless this is something you are going to do at most maybe two times you'd really just be best served to buy a media player like the Western Digital ones or similar players where you don't need to convert at all.
    Quote Quote  
  13. Member AlanHK's Avatar
    Join Date
    Apr 2006
    Location
    Hong Kong
    Search Comp PM
    Originally Posted by jagabo View Post
    Originally Posted by AlanHK View Post
    Anyway, quite likely the original source was 24 fps film, the 25 fps PAL was probably just speeded up, so going to 23.976fps is getting closer to the original if that's a consideration. I find it imperceptible myself.
    I sometimes notice when the audio is sped up and the pitch has changed. Especially with voices or music that I know well.
    Easy enough to compare before and after and see if it bothers you.
    But as I said, quite possibly this would be restoring the audio to its original speed.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!