AviSynth and CCE problems

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MrE_H
    Head of Sanitation
    • Apr 2003
    • 94

    AviSynth and CCE problems

    Hi guys,

    I have an xvid movie I am trying to convert to DVD. I have run FitCD to create an AviSynth script to resize the movie so that CCE will resize it correctly with the aspect ratio. Movie has ac3 audio so that has been demuxed and this is just trying to encode the video.

    My problem is that at work this all works fine and FitCD comes up with the following:

    Code:
    # -= AviSynth v2.5.5.0 script by FitCD v1.2.4 =-
    AVISource("C:\test\test.avi")
    BicubicResize(720,272,0,0.6,0,0,576,240)
    AddBorders(0,104,0,104)
    #Trim(0,201651).FadeOut(150)
    And the coversion in CCE is fine, correct size etc. Now at home, where I need to do the conversion, I get the following:

    Code:
    # -= AviSynth v2.5.5.0 script by FitCD v1.2.4 =-
    AVISource("C:\test\test.avi")
    BicubicResize(672,256,0,0.6,0,0,576,240)
    AddBorders(24,112,24,112)
    When encoded in CCE I get a video file with "ACM failed to suggest a compatible PCM Format" on it in big letters.

    This is a newly upgraded pc with a fresh windows XP install and I have installed DivX3.11, XVid and FFDShow codecs.

    Any ideas what is going on? I'm guessing this may be codec related but I thought I had the best combination.

    Thanks

    Mr E
    Last edited by MrE_H; 21 Oct 2005, 05:59 PM.
    A pub - ahh yes. A meeting place where people attempt to achieve advanced states of mental incompetence, by the repeated consumption of fermented vegetable drinks.
  • MrE_H
    Head of Sanitation
    • Apr 2003
    • 94

    #2
    Still having this problem - I installed Ac3Filter and when rendering the file in GSpot it says it's using ffdshow and ac3filter but still not working.

    Any help would be appreciated.

    Cheers
    A pub - ahh yes. A meeting place where people attempt to achieve advanced states of mental incompetence, by the repeated consumption of fermented vegetable drinks.

    Comment

    • jeo
      Digital Video Expert
      Digital Video Expert
      • Feb 2004
      • 745

      #3
      put this lines in the end of the script :

      ResampleAudio(44100)
      ConvertToYUY2()

      i hope that help.

      regards
      still sending greens(you can't see but can feel)

      geriatric rock fan

      Comment

      • MrE_H
        Head of Sanitation
        • Apr 2003
        • 94

        #4
        Cheers for that I will try it tonight. Also found another option to add audio=false to the end of the AVISource line.

        Fingers crossed!
        A pub - ahh yes. A meeting place where people attempt to achieve advanced states of mental incompetence, by the repeated consumption of fermented vegetable drinks.

        Comment

        • MrE_H
          Head of Sanitation
          • Apr 2003
          • 94

          #5
          Strangely the FitCD application that works fine at work still refuses to work at home but I manually calculated the sizes and added false (i.e. audio=false) to the avisource line and added ConvertToYUY2() that you suggested jeo and now CCE can convert it.

          Thanks
          A pub - ahh yes. A meeting place where people attempt to achieve advanced states of mental incompetence, by the repeated consumption of fermented vegetable drinks.

          Comment

          Working...