View Single Post
Old 26th May 2018, 09:38   #1482  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Just some hints to facilitate your tests with the other MVC decoder or with hardware acceleration enabled or disabled, without having to relaunch the creation of the whole project each times.

Edit the file __ENCODE_3D_MOVIE.avs with any text editor. You will see lines similar to this:
Code:
#LoadPlugin("D:\Tcl\work\BD3D2MK3D\toolset\FRIMSource.dll")
LoadPlugin("D:\Tcl\work\BD3D2MK3D\toolset\DGMVCDecode.dll")

[...]

# Load the two video streams (114391 frames per stream)
#interleaved = FRIMSource("mvc", "01001.track_4113.264", "01001.track_4114.mvc", num_frames = 114391, cache = 2, platform = "")
interleaved = DGMVCSource("01001.track_4113.264", "01001.track_4114.mvc", view = 0, frames = 114391, mode = "auto") # Old syntax for mode: hw = 0
The code above uses DGMVCSource as the MVC decoder. To check with FRIMSource, just comment out the two lines with "DGMVC" and uncomment the two lines with "FRIM", like this:
Code:
LoadPlugin("D:\Tcl\work\BD3D2MK3D\toolset\FRIMSource.dll")
#LoadPlugin("D:\Tcl\work\BD3D2MK3D\toolset\DGMVCDecode.dll")

[...]

# Load the two video streams (114391 frames per stream)
interleaved = FRIMSource("mvc", "01001.track_4113.264", "01001.track_4114.mvc", num_frames = 114391, cache = 2, platform = "")
#interleaved = DGMVCSource("01001.track_4113.264", "01001.track_4114.mvc", view = 0, frames = 114391, mode = "auto") # Old syntax for mode: hw = 0
To turn off the hardware acceleration for DGMVCSource, you have to change the mode = "auto" or mode = "hw" parameter to mode = "sw".

For FRIMSource, change platform = "" or platform = "hw" to platform = "sw".

Then, relaunch __ENCODE_3D_LAUNCHER.cmd. If that works, don't forget to change the setting in the BD3D2MK3D GUI, and let me know...
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV

Last edited by r0lZ; 26th May 2018 at 09:41.
r0lZ is offline