Advertisement
Rain_1

AVS Sample

Jan 26th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. #### MPEG2 decoder from DGMPGDec
  2. loadplugin("I:\dgmpgdec158\DGDecode.dll")
  3. #### Audio Stuff
  4. loadplugin("C:\Program Files (x86)\AviSynth 2.5\plugins\BassAudio.dll")
  5.  
  6. #### Multicore things
  7. SetMemoryMax(4096)# Optional line. Leave it out at first. See below for value M
  8. SetMTMode(3) # See below for value X
  9.  
  10. #### audio and video loading
  11. wideo = mpeg2source ("tldc.d2v")
  12. audio = bassAudioSource("tldc PID 611 L2 2ch 48 256 DELAY -333ms.mp2")
  13. AudioDubEx(wideo, audio)
  14. delayaudio(-0.181)
  15. assumetff()
  16.  
  17.  
  18. #### Multicore things
  19. #SetMemoryMax(M) # Optional line. Leave it out at first. See below for value M
  20. SetMTMode(2) # See below for value X
  21.  
  22.  
  23. #### Trimming
  24. #2x23
  25. Trim(25833, 52658) ++ Trim(54612, 76170) ++ Trim(78871, 101970)
  26.  
  27. #### maintenance things (not used in final run)
  28. #separatefields()
  29. #converttoyv12()
  30.  
  31.  
  32. #### deinterlace options, this is messy for now
  33. QTGMC( Preset="Slower", sourcematch=3, Lossless=2, EdiThreads=4, sharpness=0.60) # Options on Help File
  34. #Distributor() # This line may or may not be necessary, try removing it and see if you get more speed
  35. selectEven() # This deinterlace method duplicates frames.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement