View Single Post
Old 27th September 2019, 17:13   #1699  |  Link
bottom
Registered User
 
Join Date: Nov 2014
Posts: 7
Thanks for the elaborate replies and the tips for AvisynthPlus!!!

Really don't want to complain, just wanted to inform about my experience …

Thus here is (hopefully) all the info you have requested (and more):

• First of all sorry, the orginal error I got is:
Code:
(...)
      avs [error]: failed to load avisynth
      x264 [error]: could not open input file `__ENCODE_3D_MOVIE.avs'
• Here's the AVS-script created by BD3D2MK3D v1.13, which is mentioned in the error above, maybe it's helpful:
Code:
(...)
      #LoadPlugin("F:\Video\BD3D2MK3D\toolset\plugins64bit\FRIMSource.dll")
      LoadPlugin("F:\Video\BD3D2MK3D\toolset\plugins64bit\DGMVCDecode.dll")
      
      ##LoadPlugin(F:\Video\BD3D2MK3D\toolset\plugins64bit\VSFilter.dll")
      #LoadPlugin("F:\Video\BD3D2MK3D\toolset\plugins64bit\SupTitle.dll")
      
      # Load the two video streams (197643 frames per stream)
      #interleaved = FRIMSource("mvc", "00053.track_4113.264", "00053.track_4114.mvc", layout = "alt", num_frames = 197643, cache = 2, platform = "sw")
      interleaved = DGMVCSource("00053.track_4113.264", "00053.track_4114.mvc", view = 0, frames = 197643, mode = "sw")
      # Current base view: left eye.
      # The views are in the common order: AVC stream = left view, MVC stream = right view.
      left  = SelectEven(interleaved)
      right = SelectOdd(interleaved)
      
      # Build Side-by-Side stream
      StackHorizontal(HorizontalReduceBy2(Left), HorizontalReduceBy2(Right))
      AssumeFPS("ntsc_film")
      
      # Hardcode subtitles
      ##VobSub(".sub")
      #SupTitle(".sup")
      
      # Return the 3D clip.
      Return(last)#.Info()
• The Avisynth info dialog of BD3D2MK3D v1.13 showed up exactly as r0lZ has noted. The version shown is the same as displayed by AVSVersion32 ...

• Here's the output of „AVSVersion32“:
Code:
      C:\Windows\System32>F:\Video\BD3D2MK3D\toolset\AVSVersion32.exe
      32 Bit:  AviSynth 2.60, build:Sep 18 2013 [17:36:36] (2.6.0.4)
• My old Avisynth 2.6.0 was (I think) installed „manually“, which means:
Both a pre-build batch- and reg-file were executed
for which only the directory of the DLLs had to be entered manually …
(Maybe there was something wrong or missing with this process,
but didn't have any problems until v1.13.)


Give me a note if you want further details ...
... or otherwise just tell me to install Avisynth+

bottom is offline