VideoHelp Forum




+ Reply to Thread
Results 1 to 9 of 9
  1. Member
    Join Date
    Sep 2009
    Location
    Egypt
    Search Comp PM
    please , download these vids & help me to process them :

    http://www.mediafire.com/?oizghtnmriy18.39 MB

    http://www.mediafire.com/?nzncx55yj4i22.03 MB


    i want to solve the problem of the vids as follwing :

    -convert them into AVI in highest quality.
    -get small size as possible.
    -remove the black borders & commercial bar in both vids.
    -both of them r interlaced , i want to get rid of interlacing.
    -the 2nd vid (cartoon.ts) gives me a fake aspect ratio.


    * i tried many ways with many progs like MeGUE & VDubMod but i could not.
    * these vids are recorded by ProgDVB using SkyStar2 satellite card.
    * it s the same when recording as mpeg2 or ts " the available formats"
    * please sove it & tell me how did u do.

    the final vid needs to become like this :



    Quote Quote  
  2. Better way but harder learning curve and more difficult to use: avisynth

    Easier way for beginners: avidemux

    I suggest using avidemux. Easy to use and has built in filters. You can deinterlace (yadif top field first), crop, cut out commercials and encode all in 1 free application

    You can use 1:1 square pixels and resize to a 4:3 frame size (e.g. 640x480) using one of the resize filters, or set the aspect ratio when you encode to xvid

    If you get stuck, just ask

    Cheers
    Quote Quote  
  3. You can also use VirtualDub but you'll have to get the DirectShow source filter and have a Directshow TS file reader, MPEG 2 video decoder, and MP2 audio decoder.
    Quote Quote  
  4. Member
    Join Date
    Sep 2009
    Location
    Egypt
    Search Comp PM
    Originally Posted by poisondeathray
    Better way but harder learning curve and more difficult to use: avisynth

    Easier way for beginners: avidemux

    I suggest using avidemux. Easy to use and has built in filters. You can deinterlace (yadif top field first), crop, cut out commercials and encode all in 1 free application

    You can use 1:1 square pixels and resize to a 4:3 frame size (e.g. 640x480) using one of the resize filters, or set the aspect ratio when you encode to xvid

    If you get stuck, just ask

    Cheers
    thank u so much for response ,
    - about the 1st vid (Madian.ts) i solved it as follwing: i tried to deinterlace with yadif top field first in (MeGUI & Avidemux) but it gave me bad quality .... but i found Vdub filter called (smart deinterlace) wich gives the required quality ,so i created AVS script , added cropping filter in MeGUE then opened the script by Vdub & encoded it with( Xvid yv12 ) i got my required quality.
    * i did not cropped it with Vdub directly because it gives error " can not start video compression..."


    - about the 2nd vid (cartoon.ts) , i deinterlaced it successfully in VDub but when appling resizing filter it gives me the original aspect ratio only when resizing to 480x360 or smaller (in MeGUI) ... this gives lower quality
    i mean :
    * in MeGUI: A/R is solved when resizing as i mentioned... at this status i dont need deinterlacing filter.
    * in Vdub: i did as u mentioned but at any status it gives fake aspect ratio.
    * in Avidemux : it gives a bug like vdub when resizing & gives less quality when deinterlacing as in MeGUI.
    i.e the problem now is still in the 2nd vid only.
    Quote Quote  
  5. Member
    Join Date
    Sep 2009
    Location
    Egypt
    Search Comp PM
    Originally Posted by jagabo
    You can also use VirtualDub but you'll have to get the DirectShow source filter and have a Directshow TS file reader, MPEG 2 video decoder, and MP2 audio decoder.
    thank u so much for response , ts can be supported in VDub by creating AVS script & importing the script instead of TS file , but the result is as my response to (poisondeathray).
    Quote Quote  
  6. You have to toggle the output window in avidemux; There is a input window view, and an output window view. The output window should show the effects of the filters applied

    In vdub, (or any program) you have to crop in multiples of 2, maybe that's why vdub gave you errors ?

    If you liked the deinterlacer with megui better, you can also resize there too 640x480 instead of a smaller frame size (just use a manual script instead of the script editor, or edit the script manually using the edit tab)

    If you're comfortable with avisynth, you can choose a better deinterlacer as well, or even clean up the noise in the cartoon a bit (less noise means better compressibility and smaller filesize)
    Quote Quote  
  7. Member
    Join Date
    Sep 2009
    Location
    Egypt
    Search Comp PM
    Originally Posted by poisondeathray
    You have to toggle the output window in avidemux; There is a input window view, and an output window view.

    In vdub, (or any program) you have to crop in multiples of 2, maybe that's why vdub gave you errors ?

    If you liked the deinterlacer with megui better, you can also resize there too 640x480 instead of a smaller frame size (just use a manual script instead of the script editor, or edit the script manually using the edit tab)

    If you're comfortable with avisynth, you can choose a better deinterlacer as well, or even clean up the noise in the cartoon a bit (less noise means better compressibility and smaller filesize)

    *I tried nearly all avisynth & built in Avidemux denoisers , but i only satisfied by VDub smart denoiser filter.
    *In MeGUI i know i can write the aspect ratio as in Avidemux but in MeGUI when i write a number more than 480 like 640 it returns to 480 automatically but not with less than 480 or marking (suggest resolution (mod16))

    *In Avidemux is excluded as it gives me this error ...(I m on output window)


    however , it is displayed well in WMP or MPC it returns to fake ratio in MeGUI & VDub
    Quote Quote  
  8. You can edit it manually in the edit tab (3rd tab)

    or

    Just save the script in the avisynth script creator and edit it manually. If you need help, just post the text script here that MeGUI generated for you

    The resize should come after the deinterlace e.g.

    LanczosResize(640,480)

    If you like vdub's denoiser, you can still use vdub, just feed the modified .avs script into vdub.

    PS. you haven't tried all the avisynth deinterlacers, you 've only tried the built in ones from the GUIs. There are higher quality ones, but much much slower like TempGaussMC_Beta1 , or Yadifmod + NNEDI2. And for denoisers, there are 100's for avisynth
    Quote Quote  
  9. Member
    Join Date
    Sep 2009
    Location
    Egypt
    Search Comp PM
    Originally Posted by poisondeathray
    You can edit it manually in the edit tab (3rd tab)

    or

    Just save the script in the avisynth script creator and edit it manually. If you need help, just post the text script here that MeGUI generated for you

    The resize should come after the deinterlace e.g.

    LanczosResize(640,480)

    If you like vdub's denoiser, you can still use vdub, just feed the modified .avs script into vdub.

    PS. you haven't tried all the avisynth deinterlacers, you 've only tried the built in ones from the GUIs. There are higher quality ones, but much much slower like TempGaussMC_Beta1 , or Yadifmod + NNEDI2. And for denoisers, there are 100's for avisynth
    Thank u so much , poisondeathray , i could now manage the problem ... it was solved by modifying the script manually. I can not do more than thanking u for your efforts.
    -
    Quote Quote  



Similar Threads

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