Author Topic: Softsubed to Hardsub using super?  (Read 605 times)

Offline Rashumon

  • Member
  • Posts: 11
Softsubed to Hardsub using super?
« on: May 18, 2011, 06:34:29 PM »
does anyone know how to convert softsubed videos to hardsub using Super encoder to play on my itouch?
i already have the ff installed:avisynth,super & cccp.
I followed this guide http://myanimelist.net/forum/?topicid=292712 but rendered the video with out any subs at all. plus it didnt mention anything on how to use the avisynth during the process.

thanks!

Offline Temuthril

  • Member
  • Posts: 1140
Re: Softsubed to Hardsub using super?
« Reply #1 on: May 19, 2011, 09:18:25 AM »
There are basically two ways to make AviSynth frameserve with subs.

1) Check the following box in CCCP settings:
(click to show/hide)
And then use
Code: [Select]
DirectShowSource("C:\path\file.mkv")
In your AviSynth script.
Just checking the box shown above might do it for Super though.

2) Or a slightly harder way, but might be more accurate:
Extract the subtitle file with MKVextract, and then use the following:
Code: [Select]
LoadPlugin("C:\path\to\ffms2.dll") #Google for FFMpegSource2 to get this
LoadPlugin("C:\Program Files\Combined Community Codec Pack\Filters\VSFilter.dll") #or wherever you have installed your CCCP
FFMpegSource2("C:\path\file.mkv", atrack=-1)
TextSub("C:\path\to\subtitlefile.ass")

Offline Rashumon

  • Member
  • Posts: 11
Re: Softsubed to Hardsub using super?
« Reply #2 on: May 19, 2011, 10:18:01 PM »
hey!it worked,just as u said it would even without the scripts ;D thank you so much dude.