Quantcast Avisynth: Audio and Visual Sync Problems, Incomplete Encodes? - digitalFAQ.com Forums [Archives]
  #1  
02-03-2003, 02:49 PM
gyrene2083 gyrene2083 is offline
Free Member
 
Join Date: Feb 2003
Location: Bronx, New York
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to gyrene2083 Send a message via MSN to gyrene2083 Send a message via Yahoo to gyrene2083
I initially posted on Headache regarding Audio and Visual Sync problems. http://www.kvcd.net/forum/viewtopic.php?t=2658
I spoke to kwag and he told me to run this .avs file, which I did. Now when I set start to encode video it appears to be grabbing bits and pieces of the movie from different sections. ie, Some in the beginnning some in the middle and end.

I followed your post on the optimal settings for TMPGEnc. I am using TMPGEnc 2.510, I used DVD2AVI 1.76, I used HeadACHE, which is what I have right now for not sleeping in three days.

I'm so flustered at this point, any help so I can get a decent's nights sleep would be awesome.

I'm also going to post this on AVISYNTH.

Someone please help a Veteran
-Semper Fi
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
02-03-2003, 02:52 PM
ARnet_tenRA ARnet_tenRA is offline
Free Member
 
Join Date: Jan 2003
Location: Illinois, USA
Posts: 73
Thanks: 0
Thanked 0 Times in 0 Posts
gyrene2083,

Please post you avs file so that we can take a look.
Reply With Quote
  #3  
02-03-2003, 03:09 PM
gyrene2083 gyrene2083 is offline
Free Member
 
Join Date: Feb 2003
Location: Bronx, New York
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to gyrene2083 Send a message via MSN to gyrene2083 Send a message via Yahoo to gyrene2083
The following is from what I posted and the avs file I got from Kwag.

gyrene2083 wrote:
once i install that, do i have to run something or just install it and i can encode?

Kwag wrote:
Once you install it, you will be able to open avisynth scripts, which have the extension .avs
Here's a script that you can use as a template to experiment. Just copy and paste into notepad and save it as master.avs or any other name you want with the extension .avs:

Code:
LoadPlugin("C:\encoding\mpeg2dec.dll")
LoadPlugin("C:\encoding\fluxsmooth.dll")
LoadPlugin("C:\encoding\GripFit_preview.dll")
LoadPlugin("C:\encoding\legalclip.dll")
LoadPlugin("C:\encoding\sampler.dll")
LoadPlugin("C:\encoding\dustv5.dll")

mpeg2source("My_Movie.d2v")
LegalClip()
GripCrop( width=352, height=240, overscan=1 )
GripSize()
SpaceDust()
FluxSmooth()
GripBorders()
LegalClip()
Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##


As you have already downloaded the KVCD LBR template, you are already set to encode at that resolution 352x240. I've set the script above just for that. You only have to change the line mpeg2source("My_Movie.d2v") to point to your .d2v file, and that's it
So just open the .avs file as source with TMPEG and try it out.
The filters in the script are available here: http://www.kvcd.net/forum/viewtopic.php?t=2553

-kwag

Last edited by kwag on Sun Feb 02, 2003 1:57 am, edited 1 time in total
Reply With Quote
  #4  
02-03-2003, 04:10 PM
KingTuk KingTuk is offline
Free Member
 
Join Date: Nov 2002
Posts: 107
Thanks: 0
Thanked 0 Times in 0 Posts
you don't need this line:

Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

This is only for file prediction...
Reply With Quote
  #5  
02-03-2003, 04:12 PM
labomba labomba is offline
Free Member
 
Join Date: Jan 2003
Location: S.Paulo-Brasil
Posts: 185
Thanks: 0
Thanked 0 Times in 0 Posts
Hi gyrene2083

First I beg your pardon for my english, but I'll try to help you, I spend many night trying to understand these guys .
I'll repost the Kwag script but numbering the lines, ok?

Code:
1 LoadPlugin("C:\encoding\mpeg2dec.dll")
2 LoadPlugin("C:\encoding\fluxsmooth.dll")
3 LoadPlugin("C:\encoding\GripFit_preview.dll")
3 LoadPlugin("C:\encoding\legalclip.dll")
5 LoadPlugin("C:\encoding\sampler.dll")
6 LoadPlugin("C:\encoding\dustv5.dll")
7
8 mpeg2source("My_Movie.d2v")
9 LegalClip()
10 GripCrop( width=352, height=240, overscan=1 )
11 GripSize()
12 SpaceDust()
13 FluxSmooth()
14 GripBorders()
15 LegalClip()
16 Sampler(length=24)
17 ## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

This script is prepared to make a sample of your total encoded output, instead you wait 4/5 hours (sometime 14/15h ) to see the results. You'll have a sample with 1 second of every minute of whole film, in few minutes. So, the filesize of this sample is used to predict the total filesize of your whole film (see the prediction forum for more info), without spend the whole encode time to know if fits on 1 CD. With this trick you can see how is the quality of your encode movie and make some tests: put in on/off some filters, increasing/decreasing your CQ number, etc.
Always seeing the total file size of your sample.
At the end, when you are satisfied with the sample, just include a "#" at the line 16 ( # Sampler(length=24) ) and your script is OK, will stop to make only few seconds and will encode the whole movie (the output wil be a .m1v file with +- 600mb). So, the next phase will be mux the .mp2 audio file that you got with Head3che and this .m1v file. Use BBMpeg to do it.
At least youŽll have the final material (a .mpg file with audio+video) to burn with VCDeasy or Nero.
Only then, You will have a bedtime!

LaBomba
Reply With Quote
  #6  
02-03-2003, 04:43 PM
gyrene2083 gyrene2083 is offline
Free Member
 
Join Date: Feb 2003
Location: Bronx, New York
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to gyrene2083 Send a message via MSN to gyrene2083 Send a message via Yahoo to gyrene2083
AVE MARIA!!! Por fin!!!! Goodness I have to tell you I was going nuts. I truly appreciate your reply and I hope that I can finally sleep tonight. Would you mind if I had anymore questions to send you a message?
Reply With Quote
  #7  
02-03-2003, 04:48 PM
labomba labomba is offline
Free Member
 
Join Date: Jan 2003
Location: S.Paulo-Brasil
Posts: 185
Thanks: 0
Thanked 0 Times in 0 Posts
Hi gyrene2083

If you don't mind my bad english , be my guest! :P

greetings

LaBomba
Reply With Quote
  #8  
02-03-2003, 04:50 PM
gyrene2083 gyrene2083 is offline
Free Member
 
Join Date: Feb 2003
Location: Bronx, New York
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to gyrene2083 Send a message via MSN to gyrene2083 Send a message via Yahoo to gyrene2083
My Abuelita <grandmother> has been in the US for over 40 years and still doesn't speak english so don't worry. lol
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avi with audio sync problems? mabhz Video Encoding and Conversion 1 08-10-2004 02:16 AM
Audio sync problems! oxycotton420 Audio Conversion 20 07-21-2004 11:08 AM
DVD audio Sync problems bigggt Video Encoding and Conversion 16 07-19-2004 04:10 PM
Audio Sync Problems bigggt Video Encoding and Conversion 13 01-04-2004 11:12 AM
BBMpeg: Audio sync problems DKruskie Video Encoding and Conversion 9 07-20-2003 01:29 AM

Thread Tools



 
All times are GMT -5. The time now is 02:47 PM  —  vBulletin © Jelsoft Enterprises Ltd