View Single Post
Old 16th January 2021, 12:57   #16  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,829
Quote:
Originally Posted by Danette View Post
I can't preview the script though, at least not in MPC-HC (VDub crashes), as MPC-HC throws off a "Script error: there is no function named 'MPEG2Source'." Googling the issue hasn't helped. If anyone has a solution, it would preclude the need to wait for full processing of the file.
How do you normally open DVD video?

I remember you using MeGUI, so if that's correct you can index with MeGUI/DGIndex and edit the script. You'll find DGDecode in the MeGUI Tools folder, but after indexing, MeGUI will open the video like this.

LoadPlugin("C:\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("D:\Source_Track01.d2v")

I think there's other source filters (maybe older ones) that also open video with mpeg2source, so MeGUI plays it safe and makes sure DGDecode is being used.

DGDecode_mpeg2source("D:\Source_Track01.d2v")

This should work too though.

LoadPlugin("C:\MeGUI\tools\dgindex\DGDecode.dll")
mpeg2source("D:\Source_Track01.d2v")

Failing that, just open the video with whatever source filter you've been using until now. You can use FFMs2 to open the video and audio together so you won't need AudioDub(), if they're in the same file, but I guess I assumed you were indexing with DGIndex and extracting the audio as a separate file.

FFMS2("D:\Something Something.mkv", atrack=-1)

Last edited by hello_hello; 16th January 2021 at 13:09.
hello_hello is offline   Reply With Quote