VideoHelp Forum




+ Reply to Thread
Results 1 to 12 of 12
  1. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    When I open Vegas and want to render to mp4 it only gives me option to do it at the ipod resolution??? Is there a way around this? Also I went ahead and did that at the highest quality and got an mp4 video wth ipod resolution and there was "ghost" images throughout the whole video.. What settings do I need to have it stop doign that?

    I know lots of questions.. but I hope somebody can help me out. Want to convert my son's home movies to upload them to blip.tv
    Quote Quote  
  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    I would use ripbot264 or xvid4psp instead.
    Quote Quote  
  3. aBigMeanie aedipuss's Avatar
    Join Date
    Oct 2005
    Location
    666th portal
    Search Comp PM
    you should get 3 drop down settings for mp4 - default and 2 apple ipod. if you use the default you can change the resolution to whatever you want in the custom video tab.
    --
    "a lot of people are better dead" - prisoner KSC2-303
    Quote Quote  
  4. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    Originally Posted by Baldrick
    I would use ripbot264 or xvid4psp instead.
    Wish I knew about those apps yesterday lol will install and try em out..vegas can just sit back for the nifty editing stuff
    Quote Quote  
  5. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    Originally Posted by aedipuss
    you should get 3 drop down settings for mp4 - default and 2 apple ipod. if you use the default you can change the resolution to whatever you want in the custom video tab.
    going to try it out.. and get back with you.. the render process takes forever..
    Quote Quote  
  6. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    Originally Posted by Baldrick
    I would use ripbot264 or xvid4psp instead.
    I have installed xvid4psp and it doesn't work.. i get audio and no video.. it tells me i need a yv12 codec or something..so i installed k lite codec pack and still get that same error..
    Quote Quote  
  7. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    Xvid4psp can also create mkv.

    Don't install any k lite codec pack use instead ffdshow. THe yv12 decoder should be installed when you install xvid4psp.

    You can also use avidemux to convert to mkv and mp4 with h264.
    Quote Quote  
  8. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    Originally Posted by Baldrick
    Xvid4psp can also create mkv.

    Don't install any k lite codec pack use instead ffdshow. THe yv12 decoder should be installed when you install xvid4psp.

    You can also use avidemux to convert to mkv and mp4 with h264.
    I just installed xvid4psp again and i still get the error saying that yv12 decoder is not installed. I also uninstalled k lite codec and installed FFDSHOW. If it matters im running Vista.
    Quote Quote  
  9. What is your input source material? RGB? What format? You have to enable the appropriate decoder in ffdshow for it to work. Use mediainfo if you don't know.

    If it is RGB, add this line to the script under avisynth=>edit filtering script

    ConvertToYV12()
    Quote Quote  
  10. Member
    Join Date
    Jan 2008
    Location
    United States
    Search Comp PM
    Originally Posted by poisondeathray
    What is your input source material? RGB? What format? You have to enable the appropriate decoder in ffdshow for it to work. Use mediainfo if you don't know.

    If it is RGB, add this line to the script under avisynth=>edit filtering script

    ConvertToYV12()
    This is the info I got from mediainfo


    Code:
    General
    ID                               : 0
    Complete name                    : file directory
    Format                           : BDAV
    Format/Info                      : BluRay Video
    File size                        : 53.0 MiB
    Duration                         : 26s 247ms
    Overall bit rate                 : 16.9 Mbps
    Maximum Overall bit rate         : 18.0 Mbps
    
    Video
    ID                               : 4113 (0x1011)
    Menu ID                          : 1 (0x1)
    Format                           : AVC
    Format/Info                      : Advanced Video Codec
    Format profile                   : High@L4.0
    Format settings, CABAC           : Yes
    Format settings, ReFrames        : 2 frames
    Duration                         : 26s 233ms
    Bit rate                         : 15.8 Mbps
    Width                            : 1920 pixels
    Height                           : 1080 pixels
    Display aspect ratio             : 16/9
    Frame rate                       : 29.970 fps
    Resolution                       : 24 bits
    Colorimetry                      : 4:2:0
    Scan type                        : Interlaced
    Scan order                       : Top Field First
    
    Audio
    ID                               : 4352 (0x1100)
    Menu ID                          : 1 (0x1)
    Format                           : AC-3
    Format/Info                      : Audio Coding 3
    Duration                         : 26s 247ms
    Bit rate mode                    : Constant
    Bit rate                         : 448 Kbps
    Channel(s)                       : 6 channels
    Channel positions                : Front: L C R, Surround: L R, LFE
    Sampling rate                    : 48.0 KHz
    Video delay                      : -67ms
    
    Text
    ID                               : 4608 (0x1200)
    Menu ID                          : 1 (0x1)
    Format                           : PGS
    Video delay                      : -133ms
    Quote Quote  
  11. This looks like it might be from an AVCHD camcorder, probably a Sony variety ?

    The "ghost images" you mentioned in the 1st post are probably from the interlacing, I don't know if xvid4psp will autodetect & correct this

    Without getting into avisynth, scripting & deinterlacing, the easiest way is probably to use Soopafresh's mini guide here with easy to use batch files
    https://forum.videohelp.com/topic346331.html

    The problem is you can get artifacts with interlaced AVC using DGAVCdec because it's based on an earlier libavcodec version that had problems with interlaced AVC material, I think Soopa might have made a batch script for DirectShowSource, you might have to dig around for it...

    If you're familiar with avisynth I would use a recent build of ffdshow (h264 enabled in the configuration), haali media splitter, and avisynth 2.57 or greater

    Code:
    Load_Stdcall_Plugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll")
    
    DirectShowSource("file.m2ts", fps=29.97, audio=true)
    Yadif(order=1) #Top field first
    LanczosResize(720,400)
    You can copy that to a notepad .txt file and rename the extension to .avs, changing the filenames and paths to match, and adjust the resize if you want to. Just feed that .avs script into any encoder that accepts avisynth as input, eg. xvid4psp, megui, ripbot.
    Quote Quote  
  12. I dont know about sony vegas but here is a simple guide to using freeware to convert from m2ts to mkv...

    http://crabsticks.co.cc/how%20to%20convert%20m2ts%20to%20mkv.html

    hope this helps....
    Quote Quote  



Similar Threads

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