avisynth frameserve to tmpgenc

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chris_j11
    Junior Member
    Junior Member
    • Jan 2003
    • 25

    avisynth frameserve to tmpgenc

    just wondering, can u use this script to frameserve to tmpgenc:
    LoadPlugin("d:\avisynth\plugins\RemoveGrain")
    LoadPlugin("d:\avisynth\plugins\Deen")
    LoadPlugin("d:\avisynth\plugins\RemoveGrain")
    AVISource("d:dirdirtest.avi")
    RemoveGrain(mode=2)
    Deen()

    save as *.avs then open in tmpgenc

    i got the script here: http://forum.digital-digest.com/show...073#post352073
  • anonymez
    Super Moderator
    • Mar 2004
    • 5525

    #2
    as long as the paths are correct, i don't see why not. but i wouldn't use it unless your source was terribly grainy
    "What were the things in Gremlins called?" - Karl Pilkington

    Comment

    • techreactor
      Banned
      • Jul 2005
      • 1309

      #3
      Originally Posted by chris_j11
      just wondering, can u use this script to frameserve to tmpgenc:
      LoadPlugin("d:\avisynth\plugins\RemoveGrain")
      LoadPlugin("d:\avisynth\plugins\Deen")
      LoadPlugin("d:\avisynth\plugins\RemoveGrain")
      AVISource("d:dirdirtest.avi")
      RemoveGrain(mode=2)
      Deen()

      save as *.avs then open in tmpgenc

      i got the script here: http://forum.digital-digest.com/show...073#post352073
      if you put the filter dll's (removegrain) in the "avisynth\plugin" directory you wont need to give the "loadplugin" command.

      But just in case you need to use the command, give full filter name in the path i.e. "\removegrain.dll". Use the SSE* ver of the plugin for faster processing. You are again missing a "\" in the "avisource" command and loading the removegrain filter twice.

      Also for better compatibility, use the "readavs.dll" plugin for avs script with TMPGEnc, get it from here.

      Comment

      • chris_j11
        Junior Member
        Junior Member
        • Jan 2003
        • 25

        #4
        thnks for all the tips and help

        Comment

        Working...