Page 1 of 1

Subtitles on 3D side by side movie

Posted: 31 Aug 2011 09:26
by hackman
Hi guys,
I have full HD 3D TV SONY KDL-40EX720 and I want to play 3D movies.

The movies are in .mkv format and the 3D is side by side.
The movie is playing fine, but the subtitles are not fine.
The subtitles are shown on both sides of the 3D movie and I cannot read them :(

Is there a way to put subtitles in 3D mode ?

Here is the screenshot of the subtitles now :
Image

Re: Subtitles on 3D side by side movie

Posted: 31 Aug 2011 11:37
by Jean-Baptiste Kempf
I don't think there is a way now.

Re: Subtitles on 3D side by side movie

Posted: 31 Aug 2011 13:15
by hackman
Do you plan to build this feature ?

Re: Subtitles on 3D side by side movie

Posted: 31 Aug 2011 13:34
by Jean-Baptiste Kempf
Yes.

Re: Subtitles on 3D side by side movie

Posted: 31 Aug 2011 15:33
by hackman
Do you have timeline for this feature ?
Is there a place where I can watch the progress?

Re: Subtitles on 3D side by side movie

Posted: 31 Aug 2011 16:39
by Jean-Baptiste Kempf
We don't have timelines.

Re: Subtitles on 3D side by side movie

Posted: 02 Sep 2011 17:48
by juap
I have the exact same problem, i hope the solution came soon.
(Also the same tv) :p... Anyway i has been wating for 3 month, playing subtitules is crucial because im from Argentina, my family speak english, and all 3D movies are in subtitled english.... So 3D wasted until a solution arrive, any clue how to play 3D subtitles (on Mac)

Re: Subtitles on 3D side by side movie

Posted: 11 Sep 2011 01:46
by Frenk82
84.27.10.123/3DSubtitler/

1. download (2 files)
2. use the *.exe program to create from *.srt a *.sup
3. use the *.jar program to create from the *.sup a *.sub and *.idx
4. rename the *.sub and *.idx (same as moviename)
5. enjoy!

Re: Subtitles on 3D side by side movie

Posted: 21 Mar 2012 11:56
by RICHY
We don't have timelines.
Why? What are you waiting?
When will this feature be available???

Re: Subtitles on 3D side by side movie

Posted: 21 Mar 2012 12:46
by RĂ©mi Denis-Courmont
Again: we don't have timelines; this is a volunteer-based project.

Re: Subtitles on 3D side by side movie

Posted: 29 Mar 2012 05:14
by nhelder
84.27.10.123/3DSubtitler/
1. download (2 files)
2. use the *.exe program to create from *.srt a *.sup
3. use the *.jar program to create from the *.sup a *.sub and *.idx
4. rename the *.sub and *.idx (same as moviename)
5. enjoy!
Hi, Frenk~

Is there another location available for your tool?

Thanks,

- Nathan

Re: Subtitles on 3D side by side movie

Posted: 12 Jan 2013 18:02
by vartaxe
any news on this?

Re: Subtitles on 3D side by side movie

Posted: 27 Sep 2013 19:05
by Suggar
I wish to manifest my desire on this feature.
Also, I appreciate any workaround for this.

And I think I can help on clarifying the others question on a "time line". As a developer I understand what is a opensource project and love how wonderful this is for ppl. With that said: Is this feature in a road map or Is there any milestone that can help us tracking it?

Re: Subtitles on 3D side by side movie

Posted: 16 Aug 2014 13:30
by spawnflagger
Yesterday I wanted to try a movie file that was encoded in 3D SBS (1920x1080, LR each 960x1080) (H264 MPEG-4 AVC), on my 3D projector (auto hdmi 1.4 3D mode support, or manual side-by-side mode).

It worked pretty well, not much noticeable difference from a Blu-Ray 3D (the projector is only 720p native, so not losing that many pixels per LR frame)
But subtitles (.srt file, Chinese+English UTF8) were same problem mentioned here by OP.

After some googling, I found this open source tool :https://code.google.com/p/sub3dtool/
It takes your .srt file as input, and creates a .ass file (ASS = Advanced SSA), which has 2 copies of the subtitles for both L and R frames.
I couldn't get the javascript version to work (maybe a browser setting?), but the C version compiled and ran fine in Linux.

Code: Select all

./sub3dtool input.srt --3dsbs -o output.ass
If you rename .ass file to match the .mp4 (or .mkv, .avi, etc), just like the .srt, VLC will pick it up as a subtitle track automatically.

There were some offset+yellow subtitles at the beginning into that didn't show up correctly, but 99% of the main movie subtitles were there and looked good.

----
Other notes: The .ass renderer in VLC 2.1.3 had some problem, after 20-30 minutes (initially, then every 10 minutes after) subtitles disappeared, would start to corrupt video frames, then if I try to exit full screen, video would freeze (audio kept going) and if I close VLC, it crashed on exit. I upgraded to 2.1.5, and replaying same file/subtitle with no problems.

Wishlist: It would also be nice if VLC had a SBS mode for the full screen overlay (popup at bottom of screen), so that you could see it without needing 3D glasses + closing 1 eye at a time. Basically just auto-move the controls left to be centered between 0-960px, and duplicate identical controls to be centered between 961-1920px. Mouse input on either set of controls should work (and other half controls would reflect same changes in realtime)

Perhaps the same SBS mode could use code from above project to create a .ass file in ram (they are ~2-3x size of .srt files, so still small), and render subtitles using existing SSA renderer?