Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > (HD) DVD, Blu-ray & (S)VCD > (HD) DVD & Blu-ray authoring
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 17th March 2013, 13:28   #1121  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
vanden, thanks for the precision, but it's useless for my GUI. I need a combined.h264 file that can be processed by the current version of DirectShowMVCSource, not by stereoscopic player. As far as I know, I need to use CombineMVC. In other words, your finding is interesting, but I would like to do exactly the opposite: convert a h264 combined stream made with MakeMKV to something equivalent to what CombineMVC produces. That seems impossible currently. Or have I missed something?

Of course, it would be better if DirectShowMVCSource could open the combined h264 produced by MakeMKV (or preferably the MKV file containing it). It it is sufficient to use the Matroska Splitter, that should be possible. But the new DirectShowMVCSource should support well the two methods, as MakeMKV is not free.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 17th March 2013, 13:54   #1122  |  Link
samfednik
Registered User
 
Join Date: Aug 2011
Posts: 17
Quote:
Originally Posted by r0lZ
as MakeMKV is not free.
http://www.makemkv.com/forum2/viewtopic.php?f=5&t=1053
samfednik is offline   Reply With Quote
Old 17th March 2013, 14:08   #1123  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Thanks. I did know that "beta free" thing, but anyway, it will be payware one day.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 17th March 2013, 14:29   #1124  |  Link
vanden
Registered User
 
Join Date: Sep 2007
Posts: 104
I understood why StereoscopicPlayer (with filters by default) does not work with files CombineMVC : this is a problem with stf.dll.

With DirectShowSource we have the same problem when using stf.dll :
LoadPlugin("DirectShowMVCSource.dll")
video = DirectShowMVCSource("CombinedMVC.m2ts", stf=16)
AssumeFPS(video, 24000, 1001)
return video

Does not work ! While this script works :
LoadPlugin ("DirectShowMVCSource.dll")
left = DirectShowMVCSource("CombinedMVC.m2ts", decodeleft=true)
right = DirectShowMVCSource("CombinedMVC.m2ts")
video = StackHorizontal(left, right)
return video

With a file .SSIF, both scripts work properly !

Another discovery muxer combined raw stream created by combineMVC in a mkv containair with mkvmerge : This damages Combined raw stream !

1. create raw combined stream (with combinemvc)
you can test this combined raw stream with Mainconcept/Sonic filters :

2. Mux it with mkvtoolnix.
3. Demux with tsMuxer or mkvextract or eac3to.
4. verify that combined raw stream is no longer readable with MainConcept filters :






Mux in .m2ts (Combined raw stream created by combinemvc) demux with tsMuxeR or eac3, the Combined raw stream does not damaged .

Last edited by vanden; 17th March 2013 at 14:35.
vanden is offline   Reply With Quote
Old 17th March 2013, 14:47   #1125  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Quote:
Originally Posted by vanden View Post
I understood why StereoscopicPlayer (with filters by default) does not work with files CombineMVC : this is a problem with stf.dll.
That was already known, as you can see here:
Quote:
Originally Posted by Neisklar View Post
The Plugin is now capable of opening .m2ts (or other MPEG Transportstreams) files, with an single combined MVC stream.
BUT: when using such a file, the STF will NOT work (even the StereoPlayer won't play it), so you need to do it this way for example:
Code:
LoadPlugin ("DirectShowMVCSource.dll")
left = DirectShowMVCSource("combined.m2ts", decodeleft=true)
right = DirectShowMVCSource("combined.m2ts")

video = StackHorizontal(left, right).BilinearResize(1920, 1080)

return video
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 17th March 2013, 16:01   #1126  |  Link
vanden
Registered User
 
Join Date: Sep 2007
Posts: 104
Quote:
Originally Posted by r0lZ View Post
That was already known, as you can see here:
Sorry I had not seen ! So I confirm !
vanden is offline   Reply With Quote
Old 17th March 2013, 18:27   #1127  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by vanden View Post
It is necessary to force "DirectShowMVCSource", to use "MatroskaSplitter.dll" (of sereoscopicplaver> = 1.9.6) instead of "MPEGSplitter.dll" ...
"MatroskaSplitter.dll" for *.mkv
"MPEGSplitter.dll" for *.ts, *.mts, *.m2ts

__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.
frencher is offline   Reply With Quote
Old 17th March 2013, 20:47   #1128  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
@r0lz
It would be handy to get the option of muxing the files into blu-ray structure after encoding, rather than mkv only, because some (2D-)blu-ray standalones reject to play mkv.
(It can be done with little manual work now, so no high priority, just for convenience)
Sharc is offline   Reply With Quote
Old 17th March 2013, 22:53   #1129  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
Not sure why you want to convert a BD to a BD! IMO, if you want a backup, you should just copy the original BD. You want a backup for a 2D BD player?

Also, honestly, I don't know how to create the BD structure. Creating a MKV is easy, and I can probably create a M2TS instead, but that's not a BD structure. My program is a GUI only, and if that can be done easily with an existing CLI tool, I may have a look, but I don't want to write that from scratch.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 17th March 2013, 22:55   #1130  |  Link
moamoa
Registered User
 
Join Date: Feb 2013
Posts: 12
Quote:
Originally Posted by r0lZ View Post
I see. Anyway, if eac3to fails when it tries to retrieve the stream information for the selected MPLS, that means that something is wrong with your BD or ISO.
(The error of your 3th screenshot is caused by the missing stream information, but is not relevant. It should not happen with a valid BD.)

I haven't tried to process a MakeMKV backup yet. Still busy, but I should have some time tomorrow...
Any joy? Does this look possible?
moamoa is offline   Reply With Quote
Old 18th March 2013, 00:35   #1131  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
@moamoa: Read the thread, and your PMs.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 18th March 2013, 00:49   #1132  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by r0lZ View Post
Not sure why you want to convert a BD to a BD! IMO, if you want a backup, you should just copy the original BD. You want a backup for a 2D BD player?

Also, honestly, I don't know how to create the BD structure. Creating a MKV is easy, and I can probably create a M2TS instead, but that's not a BD structure. My program is a GUI only, and if that can be done easily with an existing CLI tool, I may have a look, but I don't want to write that from scratch.
Well, I want for example to convert & compress the main movie of an original 3D BD to an SBS, TB or anaglyph BD5 which - when in BD format - can be played on any 2D standalone BD player and watched on my legacy 2D (anaglyph) or any 3D (SBS, TB) TV or projector. It works perfectly.

The creation of a BD structure is easy: TSMuxer (CLI) has Blu-ray as an option. Just check its GUI

Last edited by Sharc; 18th March 2013 at 01:03.
Sharc is offline   Reply With Quote
Old 18th March 2013, 01:02   #1133  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
How create mkv (AVC/MVC),

From MakeMKV program folder

My BD is John Carter 3D

Scan BD infos
Code:
makemkvcon.exe -r --cache=1 info disc:9999 32 bit
makemkvcon64.exe -r --cache=1 info disc:9999 64 bit
My disc is disc:2

Remux directly to MKV 3D by title 3 (00800.mpls = title 3)
Code:
makemkvcon.exe mkv --progress=-same disc:2 3 "F:\Temp\John Carter" 32 bit
makemkvcon64.exe mkv --progress=-same disc:2 3 "F:\Temp\John Carter" 64 bit
Download => makemkvcon.rar (If don't works, please install MakeMKV)

I dream of:
- Update of "DirectShowMVCSource.dll" with audio support and "CombineMVC.exe"
- MKV 3D Seekable
- Subtitles and forced subtitles
- Chapters
- Update of eac3to

Enjoy
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 18th March 2013 at 04:11.
frencher is offline   Reply With Quote
Old 18th March 2013, 08:18   #1134  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
What is that makemkvcon command supposed to do, and how can it be useful to us?
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 18th March 2013, 16:15   #1135  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by r0lZ View Post
What is that makemkvcon command supposed to do, and how can it be useful to us?
ISO is a large MKV 3D structure is kept AVC/MVC and everything needed. (Chapters Languages)
Fewer problems with several cutoff .SSIF
100% Compatible with "Stereoscopic Player" and seekable
Faster than "CombineMVC" and does not require remux.
And more .....
Easy Export to pipe with recode on a fly
Developers Tutorial here
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 18th March 2013 at 16:22.
frencher is offline   Reply With Quote
Old 18th March 2013, 16:46   #1136  |  Link
r0lZ
PgcEdit daemon
 
r0lZ's Avatar
 
Join Date: Jul 2003
Posts: 7,469
OK, I suppose you were replying to this post:
Quote:
Originally Posted by Sharc View Post
@r0lz
It would be handy to get the option of muxing the files into blu-ray structure after encoding, rather than mkv only, because some (2D-)blu-ray standalones reject to play mkv.
(It can be done with little manual work now, so no high priority, just for convenience)
But if I understand correctly, Sharc wants a way to create a BD with an Anaglyph, SBS or TB conversion, not with AVC/MVC streams, compatible only with 3D BD players.
__________________
r0lZ
PgcEdit homepage (hosted by VideoHelp)
BD3D2MK3D A tool to convert 3D blu-rays to SBS, T&B or FS MKV
r0lZ is offline   Reply With Quote
Old 18th March 2013, 16:58   #1137  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
Quote:
Originally Posted by vanden View Post
It is necessary to force "DirectShowMVCSource", to use "MatroskaSplitter.dll" (of sereoscopicplaver> = 1.9.6) instead of "MPEGSplitter.dll" ...
If "DirectShowMVCSource.dll" is updated everything is possible
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 19th March 2013 at 14:47.
frencher is offline   Reply With Quote
Old 20th March 2013, 05:23   #1138  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
"MVC Player Free v0.0.1.1" In my signature...

Extract and run directly MVC Player Free.exe or play associated file with MVC Player Free.exe
Code:
# Added: Full Recode with x264 1 & 2 pass and custom preset (output > .mkv)
# Added: Auto-switch of some compatible 3D TV (SBS an UO)
# Added: eac3to infos
# Added: eac3to demux (selected .m2ts & .ssif ready)
# Added: Rapid link to CombineMVC and tsMuxeR
# Added: Editable playlist (x264 & eac3to demuxing)
# Added: Multi angle compatible
# Added: Support of index.bdmv (BD Root)
# Added: Support of playlist (.mpls)
# Added: Support of all media
# Fixed:  Help topic (in progress...)
# Fixed:  Link for update (in my signatre)
# Some fixes
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 20th March 2013 at 16:31.
frencher is offline   Reply With Quote
Old 21st March 2013, 01:40   #1139  |  Link
frencher
French Love
 
Join Date: Oct 2008
Location: France
Posts: 456
"MVC Player Free v0.0.1.2" In my signature...

Extract and run directly MVC Player Free.exe or play associated file with MVC Player Free.exe
Code:
# Added: MediaInfo
# Added: Export to i420 YUV (output > .yuv)
# Fixed: Stop probleme with DirectShow filters
# Some fixes
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial
Demo for MVC Player Free: Trailer 3D

3DBD's Free - v0.0.0.0005.exe Old

Programing free for all.

Last edited by frencher; 21st March 2013 at 23:13.
frencher is offline   Reply With Quote
Old 22nd March 2013, 04:05   #1140  |  Link
vanden
Registered User
 
Join Date: Sep 2007
Posts: 104
As I tried to answer my question :
Quote:
Originally Posted by vanden View Post
I guess CombineMVC.exe uses filters Sonic/MainConcept (Sonic MVC Muxer AND Sonic File Writer) ?
Having filters Sonic Scenarist 5.5 (Sonic MVC Muxer 1.0.0.29341), I tested the graph.
Surprise the file is not exactly the same size as the CombineMVC file and it is not readable with Mainconcept/Sonic MPEG demultiplexer or (once remux in m2ts) with DirectShowSource ...!
Remux in mkv (mkvmerg) MakeMKV can not see the MVC stream ...

By chance I test Sonic HD Demuxer filter 4.3.00.0134 (on my raw stream combined "Sonic MVC Muxer") and it works.
I say I will test with a MakeMKV file demuxed (with eac3to), it works too !
I accidentally found a way to read in GraphEdit the raw combined stream of MakeMKV.
1. Demux MKV (with eac3to).
2. Open GraphEdit :
-a- File Source (Async) (open a raw file CombineMVC) / Mainconcept MPEG demultiplexer / Mainconcept MVC Decoder : Just activate the 2 video outputs of the decoder.
-b- File Source (Async) (open a raw file MakeMKV) / Sonic HD Demuxer / Mainconcept MVC Decoder / 2 Video render.
vanden is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 20:50.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.