I followed the guide on this site for merging permanent subs on AVI files. The subs work on the movie in Winamp and Media Player and so does the movie, but not in TMPGEnc Plus. All I get is a black screen in TMPGEnc Plus, while encoding and in source range. I see Vobsub open up on my desktop tray when I try to encode the movie or when I open source range, if that helps. Any ideas why it only encodes a black screen ?
+ Reply to Thread
Results 1 to 19 of 19
-
-
My experience is that DirectVOBSub doesn't work too well with TMPGEnc or probably rather TMPGEnc doesn't work well with it.
Try using it via AVISynth or if the video is something that ffdshow can decode, use it. ffdshow can also do subs via raw video, however that doesn't seem to work with TMPGEnc either. -
I'll try it. Thanks a lot Celtic !
Edit: I just tried it.. sorry, but it seems I don't know what I'm doing with Avisnyth.I wish this was easier. I guess I'll have to try a new video encoder.
-
Well it would be something like
avisource("whatever.avi",false) #load avi without audio
next part depends on whether you have text or vobsubs.
VSFilter contains both textsub and vobsub plugins
so say
textsub("whatever.srt")
Chances are that it can be decoded via ffdshow though. So say it was XviD,
enable XviD in ffdshow, disable directvobsub and enable subs in ffdshow.
Load the file in TMPGEnc and it should be decoded by ffdshow with subs.
ffdshow handles text and vobsubs. -
First, make sure you have the latest VSFilter The file properties (right click->properties->version tab) reports version 1.0.1.2 for VSfilter 2.36
Second:
Try this, do a search for vsfilter.dll
If you installed Matroska, it is most likely in "C:\Program Files\Matroska Pack"
*note: in the following code, replace C:\Matroska Pack with the path to vsfilter.dll
Copy the following into notepad:
Code::: batch file to turn on (register) vobsub or off (unregister) :: To enable vobsub type: vobsub + :: To disable vobsub type: vobsub - @ECHO OFF IF %1==on GOTO ENABLE IF %1==off GOTO DISABLE ECHO No changes made. GOTO END :ENABLE ECHO .. ECHO Registering vsfilter.dll :: The next line should conraint the path and filename of vsfilter.dll REGSVR32 "C:\Matroska Pack\plugins\vsfilter.dll" GOTO END :DISABLE ECHO .. ECHO Unregistering vsfilter.dll :: The next line should conraint the path and filename of vsfilter.dll REGSVR32 /u "C:\Matroska Pack\vsfilter.dll" GOTO END :END
To enable VobSub do the following:
1. Start -> Run -> type: cmd
2. At the prompt to enable or diable VobSub:
To enable type: vobsub on
To disable type: vobsub off
*note: a system restart may be required.
[/b][/code]
Edit: The reason Celtic's solution may not be working is because the path to vsfilter.dll is not specified.Some people say dog is mans best friend. I say that man is dog's best slave... At least that is what my dogs think. -
Hey Skith, thanks a lot. I did all that, but I did it with the DVobsub.ax file and it finally disabled. Now to ffdshow. It opens with TMPGEnc Plus now like Vobsub used to, but it also crashes it :/. How do I fix it so it can encode ?
-
Hey Celtic, glad you're back. I installed the first one from this page - http://www.free-codecs.com/FFDShow_download.htm
Vobsub shows up on the ffdshow config screen (as another option). Could Vobsub still be intefering ? I tried disabling and enabling it. TMPGEnc Plus still crashes in source range and/or after encoding starts. -
Enabling/disabling vobsub won't make any difference unless you have idx/sub files.
So that would be "[ FFDShow MPEG-4 Video Decoder 2005-03-12 - Generic ]"
Can't remember if I tested before or after that build. Aside from the fact that just cause it works on my system doesn't mean it will work on yours.
You might want to try a different version though
Not sure if the [ FFDShow MPEG-4 Video Decoder 2005-04-06 - Unofficial ] is mine or not. I suspect not. -
But I don't understand - do I need to have Vobsub installed and enabled to be used through ffdshow, or does ffdshow on its own display the subs on TMPGEnc Plus ?
-
Which type of subtitles you have? - If you can open the file in Notepad and see the text, they are text based (hint). Look also the file extension and the file size.
-
Holy crap, it finally works ! For some reason it's not crashing anymore. Thanks to everyone for their great help !
Similar Threads
-
Combining 2 Videos into 1 file with two windows?
By 201flyer in forum EditingReplies: 11Last Post: 29th Jul 2012, 07:31 -
Trouble Importing avi file into Adobe Premiere
By Top Gun in forum Newbie / General discussionsReplies: 8Last Post: 18th Jul 2010, 13:21 -
File Combining
By ccrow79 in forum Newbie / General discussionsReplies: 1Last Post: 9th Feb 2010, 06:57 -
Combining dvd clips to one file
By wtcamb in forum Newbie / General discussionsReplies: 2Last Post: 14th Dec 2009, 12:51 -
Having trouble in editing a avi file.
By planetx in forum EditingReplies: 5Last Post: 25th Nov 2007, 03:28