VideoHelp Forum




+ Reply to Thread
Results 1 to 14 of 14
  1. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    Hi, i ended up with a 720x304 .avi (xvid) SAR 2.368, PAR 1.00, as stated by gspot 2.70a

    i used cinema craft encoder with this settings



    ended up with this 4:3 video, but image is distorted



    any help would be much appreciated, i used those settings because the following method has quality and is useful to me, any advise would be appreciated as well: i usually end up with a 4:3, 25 fps video which i put into DGPulldown and chose 25->29.97 to "cheat" to TMPGEnc Authoring works 4, this authoring program kindly identifies this video as NTSC and let just add my ac3 without any problems in sync

    thanks
    --------------------------------------------------------------------------
    Image Attached Thumbnails Click image for larger version

Name:	encoding.jpg
Views:	149
Size:	92.6 KB
ID:	1062  

    Click image for larger version

Name:	compare.png
Views:	102
Size:	138.1 KB
ID:	1063  

    Click image for larger version

Name:	encoding.s.jpg
Views:	519
Size:	80.5 KB
ID:	1064  

    Click image for larger version

Name:	compare.s.png
Views:	504
Size:	50.7 KB
ID:	1065  

    Quote Quote  
  2. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    eh.. bump... sorry but does anyone have a clue ? thanks
    Quote Quote  
  3. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    Your problem is that you are putting a square pixel image into a non-square pixel video without adjusting for the change in PAR.

    You have an older post that you started a couple of years ago that answers your question : https://forum.videohelp.com/threads/297456-resizing-help?p=1815740#post1815740 : short answer - avisynth and fitcd
    Read my blog here.
    Quote Quote  
  4. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    im so sorry for this, i think i didnt search enough in this site or the tools i intend to use now are newer/different and didnt land there, thanks for the old thread link

    by the way i hope im doing it ok now, opened the .avs with cce sp2, it opens ok, but cce sp2 reads the file as 720x576, i resized its output frame to 720x480 and i ended with pillarboxing


    script is

    start script------

    # -= AviSynth v2.5.8.5 script by FitCD v1.2.8 =-
    AVISource("I:\FILE.avi")
    BicubicResize(688,320,0,0.6,2,0,716,304)
    AddBorders(16,128,16,128)
    #Trim(0,171295).FadeOut(150)

    script end----
    Image Attached Thumbnails Click image for larger version

Name:	situat.jpg
Views:	134
Size:	154.2 KB
ID:	1138  

    Last edited by shaktiIIIgta; 1st Apr 2010 at 14:32. Reason: adding info
    Quote Quote  
  5. Member Alex_ander's Avatar
    Join Date
    Oct 2006
    Location
    Russian Federation
    Search Comp PM
    but cce sp2 reads the file as 720x576
    That's from your script: 320+128+128=576

    I'd recommend to encode it as 16:9 (in case of 4:3 you'd need to reduce image height to ~270).
    Here are 2 versions of resizing.

    #original 720x304 to 720x480 (16:9)
    AVISource("I:\FILE.avi")
    LanczosResize(704,360).AddBorders(8,60,8,60)
    #LanczosResize(720,368).AddBorders(0,56,0,56)
    ConvertToYUY2()
    #encode with 16/9 setting


    Set 720x480 (zero borders) for both input/output in encoder.
    Quote Quote  
  6. Video Restorer lordsmurf's Avatar
    Join Date
    Jun 2003
    Location
    dFAQ.us/lordsmurf
    Search Comp PM
    Translation: "I have an expensive piece of pro software that I downloaded without paying for, and in addition to that, I have no idea how to use it."

    Tools like CCE were never developed with the downloader/pirate workflow in mind -- it was made for a professional video workflow.
    Want my help? Ask here! (not via PM!)
    FAQs: Best Blank DiscsBest TBCsBest VCRs for captureRestore VHS
    Quote Quote  
  7. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    thanks, tried both of them and noticed the border in the first option, encoded as 16:9 as you said. If would choose to encode to 4:3 though, which would be the script ?

    if i got it right options were:

    1st:
    #original 720x304 to 720x480 (16:9)
    AVISource("I:\FILE.avi")
    LanczosResize(704,360).AddBorders(8,60,8,60)
    ConvertToYUY2()


    2nd
    #original 720x304 to 720x480 (16:9)
    AVISource("I:\FILE.avi")
    LanczosResize(720,368).AddBorders(0,56,0,56)
    ConvertToYUY2()




    and is there any calculator or handy software i can use to get to know those ind of resizing sizes ? i used fitcd but as you saw, borders were added


    thanks
    Quote Quote  
  8. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    Originally Posted by lordsmurf View Post
    Translation: "I have an expensive piece of pro software that I downloaded without paying for, and in addition to that, I have no idea how to use it."

    Tools like CCE were never developed with the downloader/pirate workflow in mind -- it was made for a professional video workflow.
    because workflows vary person to person, i chose to aquire that soft because of the speed, not that i have to be billgates or torvalds to use an OS ...key concept was square pixel video, so if you get me a guide for conversions, resizing, including what kind of pixels (squared or whatever), suggesting tools, or suggesting a fast workflow for converting/resizing a movie/video, workflows would change
    Quote Quote  
  9. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    FitCD did what you told it to do. Obviously you told FitCD your target output was PAL, not NTSC, hence the frame size and borders. FitCD is still the right tool for this job - you just have to take the time to configure it correctly.
    Read my blog here.
    Quote Quote  
  10. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    thats much more useful, thanks so much guns1linger, unchecked PAL option in fitcd program, used this script

    # -= AviSynth v2.5.8.5 script by FitCD v1.2.8 =-
    AVISource("I:\FILE.avi")
    BicubicResize(720,288,0,0.6,14,0,692,304)
    AddBorders(0,96,0,96) // i opted for 0 blocks overscan in fitcd to give me 0 borders
    AssumeFPS(23.976, true) // i had doubts here, but didnt erase this line and video was resized fine, 0 borders, 4:3, 25fps in mgpg2 encoder
    #Trim(0,171295).FadeOut(150) // dont know what this lines mean


    thanks so much, movie converted right
    Last edited by shaktiIIIgta; 1st Apr 2010 at 21:54.
    Quote Quote  
  11. Originally Posted by shaktiIIIgta View Post
    dont know what this lines mean
    It doesn't mean anything since it's commented out (has a '#' in front of it). You can just delete the line.

    Did you really set the encoder to 25fps? Then I guess you know you apply DGPulldown afterwards set for 25->29.97fps. And you remove the 'AssumeFPS(23.976)' line from the script. And like Alex_ander, I think I'd also encode for 16:9.
    Quote Quote  
  12. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    thanks manono, true, i saved the .avs with that last line commented and used it like that, and yeap, i applied DGpulldown aftwerwards, that really nice sotware is very useful and let me input the video in the dvd authoring app without the need to slowdown the ac3 audio

    thanks, yes i think i'll re-encode, this time i'll chose 16:9 instead of 4:3, i've never encoded this source aspect (2.35:1 anamorphic i think) to 16:9 and seen it in my old crt 4:3 tv lol
    Quote Quote  
  13. Always Watching guns1inger's Avatar
    Join Date
    Apr 2004
    Location
    Miskatonic U
    Search Comp PM
    Encoding it 16:9 won't make it any larger on your 4:3 TV unless you also crop off the ends of the image. 2.35 inside a 4:3 frame has the same size black bars on playback as 2.35 inside a 16:9 frame. However you do get better value for your encoding, and therefore (usually) better quality.
    Read my blog here.
    Quote Quote  
  14. Member
    Join Date
    Nov 2008
    Location
    San Diego
    Search Comp PM
    thanks for the info guns1inger, i really didnt know that, ive always encoded as 4:3, and now ive seen that looks the same, ive just finished burning the disc

    thanks for helping you all, guns1inger Alex_ander and manono
    Quote Quote  



Similar Threads

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