From ssrinivas456 at gmail.com Wed Mar 2 04:24:43 2011 From: ssrinivas456 at gmail.com (Sandiri Srinivas) Date: Tue, 1 Mar 2011 19:24:43 -0800 Subject: [Matroska-devel] Sir I Want to Learn In-Reply-To: References: Message-ID: > > > Hello Sir I Want to Make Matroska Video I Very Interested in this But I Dont Know How to Make How Much Take Time to Make 4min Matroska Video Please Send Video To Learn Matroska Easy Please Sir Please Thanking you Sir Iam Waiting For Your Reply With Good News -------------- next part -------------- An HTML attachment was scrubbed... URL: From ssrinivas456 at gmail.com Wed Mar 2 05:13:58 2011 From: ssrinivas456 at gmail.com (Sandiri Srinivas) Date: Tue, 1 Mar 2011 20:13:58 -0800 Subject: [Matroska-devel] Sir I Want to Learn In-Reply-To: References: Message-ID: Sir and Also Tell Me How to Encode a Matroska > > Please Sir > > > Thanking you Sir > Iam Waiting For Your Reply With Good News > -------------- next part -------------- An HTML attachment was scrubbed... URL: From boris.juraga at gmail.com Wed Mar 2 09:44:24 2011 From: boris.juraga at gmail.com (Boris Juraga) Date: Wed, 2 Mar 2011 09:44:24 +0100 Subject: [Matroska-devel] Sir I Want to Learn In-Reply-To: References: Message-ID: If you have a video in some format and you would like to convert it to matroska you can use mkvmerge http://www.bunkus.org/videotools/mkvtoolnix/downloads.html but matroska is not a video format, it is a container and can contain any video format 4 min video will transfer in to matroska in a mater of seconds In the other hand if you like to make an application for transferring video to matroska you are in the right place, otherwise go to the site i provided you with On Wed, Mar 2, 2011 at 5:13 AM, Sandiri Srinivas wrote: > > > Sir and Also Tell Me How to Encode a Matroska >> >> Please Sir >> >> Thanking you Sir >> Iam Waiting For Your Reply With Good News > > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: > http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > From slhomme at matroska.org Sun Mar 13 20:04:40 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sun, 13 Mar 2011 20:04:40 +0100 Subject: [Matroska-devel] multiple video streams stereo 3D mode broken In-Reply-To: References: Message-ID: I released mkclean 0.8.1 that can turn Matroska files with the old StereoMode field/values into clean Matroska v3. It even looks for separated left and right tracks and add another video track using the TrackOperation/CombinePlane system. While doing that I noticed there's a small issue, since that extra track doesn't have blocks of its own, there doesn't need to have a codec ID (nor codec private data, or other fields). So I set "V_COMBINED" as the video codec ID. Steve 2011/2/27 Steve Lhomme : > I added a note about the older values of StereoMode: > http://www.matroska.org/technical/specs/notes.html#3D > > 2011/2/27 Steve Lhomme : >> Hi, >> >> 2011/2/23 ?????? ???????? : >>> About backward compatibility. As I found, old stereomode (had only >>> mono/left/right/both values) was saved with ID 0x53B9. >>> The new stereomode flag has id 0x53B8 and has another values enumeration >>> with only combined modes. >> >> In fact I think the specs have always said 0x53B8 but libmatroska had >> 0x53B9 instead. It was fixed in libmatroska 0.9.0 released in may >> 2010. >> The oldeest revision of the specs we have with a date : >> http://www.matroska.org/node/1/revisions/1/view (also may 2010) >> >>> This mean that old flag will not be read by new parser at all (mkvinfo show >>> me 'DummyElement' for old files) >>> thus old value will not be reinterpret by any program in wrong way (but will >>> be ignored). >>> Technically both flags could be safely read for full compatibility. Am I >>> right? >> >> Yes, except this is due to a libmatroska bug. I don't know if other >> code was used to produce/read such files. >> >> Current readers should use the values pre-defined in StereoMode when: >> it's 0x53B8 and Matroska version EBMLReadVersion is 3 or more. >> Otherwise the old values can be assumed. In WebM 0x53B8 is sufficient >> to know it's the new values. >> >> And of course 0x53B9 will mean old values. >> >>> I found this in specification notice: >>>> >>>> The pixel count of the track (PixelWidth/PixelHeight) should be the raw >>>> amount of pixels (for example 3840x1080 for full HD side by side) and the >>>> DisplayWidth/Height in pixels should be the amount of pixels for one plane >>>> (1920x1080 for that full HD stream) >>> >>> The only reason for this strange behaviour - to simplify DAR settings by the >>> user (if he know about this). >>> But if player has no support for stereoplayback and probably - doesn't fit >>> this special agreement, than video will be shown with wrong Display Aspect >>> Ratio >>> (because it will be applied for combined stereopair). This is sans logique >>> for me to apply different PAR/DAR for each combined mode. >>> Is this agreement is final and will never changed? >> >> It can change, but this is only the case when video is encoding >> side-by-side. If the reader doesn't know about StereoMode there's even >> less chance it would be able to tell the decoder to keep only one >> side. So in any case the display is screwed. >> In the case the playback chain knows about StereoMode and side-by-side >> then it's the way to tell if the resolution is half the regular one or >> the full one on the final display. >> >>> The only players I heard (I have no any) that do this like this - some >>> hardware stereoscopic players. But they do this regardless PAR/DAR settings >>> in container >>> - they just ALWAYS show 1080p/720p video (for combined stereopair - thus >>> video is anamorphic) as 16:9 for one plane (according to selected source >>> format). >> >> If they don't care about the PAR/DAR then there is no issue. >> >>> If agreement for PAR/DAR is final (at least for matroska container), >>> than FFmpeg library should ALWAYS apply special PAR conversion according >>> stereomode flag to fit the agreement >>> (thus video will be shown with correct aspect ratio regardless stereo >>> support in the player). >> >> Does FFmpeg have the flags to tell a video is side by side ? >> >> I think if you reencode a video with FFmpeg it will keep the aspect >> ratio on the output. So all you need is make sure the pixel resolution >> you set is still matching the side-by-side aspect. >> >>>> For the TrackCombinePlanes explanation you may want to look at this: >>>> http://www.matroska.org/technical/specs/notes.html#TrackOperation >>>> >>>> What you had with left, and right separated is now handled that way. >>>> These tracks remain but then you have a third virtual track that is >>>> the actual 3D version. >>> >>> As I understand, virtual tracks declared are created in other layer (not as >>> track options). >> >> No, they are declared just like any other track. That's the whole >> point, that everything that applies to tracks apply to virtual ones as >> well. >> >>> And virtual tracks aware parser will just ignore this information (and >>> stereo video tracks will still be available >>> just without any way to distinct them while technically TrackPlaneType >>> currently has very simple definition). >>> Thats not bad. >> >> Parsers that don't know about TrackOperation will not be able to play >> these tracks. That's one of the reason for the bump to Matroska v3. A >> file marked as readable by v3 (and up) compliant readers and can only >> handle v2 may decide not to play the file. The left and right tracks >> may be marked as NOT Enabled as well (0xB9) and then the player ens up >> with just the virtual track that it can't play anyway. >> >>> Another of my question was: >>>> >>>> Could you explain me what this combine planes means and how it should be >>>> saved using mkvmerge and could/should be used in a player? >>> >>> I fail to find support for combine planes in current mkv tools (mkvmerge and >>> mkvpropedit). >>> I should understand - it is in progress? >> >> Yes >> >>> To support new behaviour in my program I should change FFmpeg matroska >>> parser (and probably define some new definitions in API). >>> So, I want to ask - is someone from matroska developers responsible to save >>> FFmpeg implementation in sync? >>> I'm not yet FFmpeg developer but I'll try to create patch if noone from >>> resident developers is interest in it. >> >> I haven't followed the work on FFmpeg for a while, but no there is no >> direct contact to make this happen. Usually people add features in >> their programs when they encounter files they can't play. I suppose 3D >> is quite new and I don't think FFmpeg has been tweaked yet to handle >> all the 3D possibilities. The best way to find out is ask on their >> mailing lists or IRC channel. >> >> Steve >> >> -- >> Steve Lhomme >> Matroska association Chairman >> > > > > -- > Steve Lhomme > Matroska association Chairman > -- Steve Lhomme Matroska association Chairman From ssrinivas456 at gmail.com Mon Mar 14 04:55:49 2011 From: ssrinivas456 at gmail.com (Sandiri Srinivas) Date: Sun, 13 Mar 2011 19:55:49 -0800 Subject: [Matroska-devel] Please Give Suggestion Message-ID: Hello Sir My Name is Srinivas From INDIA Sir Iam Seeing from Last 7 Year in all Blogspot and Etc, Some Fellows are Making They Own HD Videos From Movies And i Dont Know How They are Doing Please Give Suggestion,I Want to Make 720p 1080P Videos Like They And What They are Using Software or Anything Purchases See This Sample Links That Fellows Make Its Very High Quality http://www.123tamilforum.com/showthread.php?t=282888 http://www.indiancinemafans.com/board/upload/dvds-untouched-blue-rays-161/magadheera-2009-1080p-bluray-rip-x264-dts-subs-rs-ff-up-hf-mu-64243/ http://www.indiancinemafans.com/board/upload/hindi-video-songs-64/love-aaj-kal-2009-dvdrip-upscaled-1080p-ac3-5-1-all-videos-64532/ First of all from were they got or recorded that videos and I know how to encode videos to our wishes just i need from were they recording Please Give Sujjection Please Sir Thanking you Sir Waiting For reply Once-again Thanking you -------------- next part -------------- An HTML attachment was scrubbed... URL: From slhomme at matroska.org Thu Mar 17 13:26:24 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Thu, 17 Mar 2011 13:26:24 +0100 Subject: [Matroska-devel] Spec Generator Message-ID: Hi everyone, I've recently been working on a tool to generate the Matroska specifications from an XML file [1]. The specification page is now *always* generated using this source file. So there is no mismatch possible. And it's also possible to track changes in the specifications that way [2]. I made a few tools to read/write that XML file [3]. The semantic tables in libmatroska2 are now automatically generated from the same XML source as the specs (and thanks to that I noticed a few differences). Feel free to use that XML to generate your own code or specifications. [1] https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/specdata.xml [2] http://matroska.svn.sourceforge.net/viewvc/matroska/trunk/foundation_src/spectool/specdata.xml?view=log [3] https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/ -- Steve Lhomme Matroska association Chairman From cwiesner at matroska.org Fri Mar 18 05:57:38 2011 From: cwiesner at matroska.org (Christian Wiesner) Date: Fri, 18 Mar 2011 05:57:38 +0100 Subject: [Matroska-devel] Spec Generator In-Reply-To: References: Message-ID: Wow. Nice ! 2011/3/17 Steve Lhomme > Hi everyone, > > I've recently been working on a tool to generate the Matroska > specifications from an XML file [1]. The specification page is now > *always* generated using this source file. So there is no mismatch > possible. And it's also possible to track changes in the > specifications that way [2]. > > I made a few tools to read/write that XML file [3]. The semantic > tables in libmatroska2 are now automatically generated from the same > XML source as the specs (and thanks to that I noticed a few > differences). > > Feel free to use that XML to generate your own code or specifications. > > > [1] > https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/specdata.xml > [2] > http://matroska.svn.sourceforge.net/viewvc/matroska/trunk/foundation_src/spectool/specdata.xml?view=log > [3] > https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/ > > -- > Steve Lhomme > Matroska association Chairman > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: > http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sjimeno at ya.com Fri Mar 18 11:17:03 2011 From: sjimeno at ya.com (Santiago Jimeno) Date: Fri, 18 Mar 2011 11:17:03 +0100 Subject: [Matroska-devel] Spec Generator In-Reply-To: References: Message-ID: <71A62ECD3F1144089922A07BC4ACFFA7@JSASUS> I make use of this occasion to say that I have been working to add in my Tags editor the possibility to write them from a file xml. I have taken as reference the file matroskatags.dtd that uses mkvmerge. I have thought that it was "official" because this file was also used for the test1 files. But some names of elements don't coincide with those of specdata.xml Specdata.xml Matroskatags.dtd TagTrackUID TrackUID TagEditionUID EditionUID TagChapterUID ChapterUID TagAttachmentUID AttachmentUID SimpleTag Simple TagName Name TagDefault DefaultLanguage TagString String TagBinary Binary If any person uses Specdata names to make a file xml for tag won't work in my program, neither in mkvmerge and maybe in others. Would it be possible to specify in Tags page what DTD file we should use? On the other hand there is an error in TagDefault ID. The specifications says it is 4484. But this ID is not recognized by mkvmerge and ffmpeg. In them TagDefault ID is 44B4 Regards. Santiago ----- Original Message ----- From: "Steve Lhomme" To: "Matroska Devel" ; "WebM Discussion" Sent: Thursday, March 17, 2011 1:26 PM Subject: [Matroska-devel] Spec Generator > Hi everyone, > > I've recently been working on a tool to generate the Matroska > specifications from an XML file [1]. The specification page is now > *always* generated using this source file. So there is no mismatch > possible. And it's also possible to track changes in the > specifications that way [2]. > > I made a few tools to read/write that XML file [3]. The semantic > tables in libmatroska2 are now automatically generated from the same > XML source as the specs (and thanks to that I noticed a few > differences). > > Feel free to use that XML to generate your own code or specifications. > > > [1] > https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/specdata.xml > [2] > http://matroska.svn.sourceforge.net/viewvc/matroska/trunk/foundation_src/spectool/specdata.xml?view=log > [3] > https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/ > > -- > Steve Lhomme > Matroska association Chairman > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: > http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > From slhomme at matroska.org Sun Mar 20 11:41:36 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sun, 20 Mar 2011 11:41:36 +0100 Subject: [Matroska-devel] Spec Generator In-Reply-To: <71A62ECD3F1144089922A07BC4ACFFA7@JSASUS> References: <71A62ECD3F1144089922A07BC4ACFFA7@JSASUS> Message-ID: Hi Santiago, On Fri, Mar 18, 2011 at 11:17 AM, Santiago Jimeno wrote: > I make use of this occasion to say that I have been working to add in my > Tags editor the possibility to write them from a file xml. I have taken as > reference the file matroskatags.dtd that uses mkvmerge. I have thought that > it was "official" because this file was also used for the test1 files. But > some names of elements don't coincide with those of specdata.xml > > Specdata.xml ? ? ? ? ? ? ? Matroskatags.dtd > TagTrackUID ? ? ? ? ? ? ?TrackUID > TagEditionUID ? ? ? ? ? ? EditionUID > TagChapterUID ? ? ? ? ? ChapterUID > TagAttachmentUID ? ? ?AttachmentUID > SimpleTag ? ? ? ? ? ? ? ? ? ?Simple > TagName ? ? ? ? ? ? ? ? ? ? Name > TagDefault ? ? ? ? ? ? ? ? ? DefaultLanguage > TagString ? ? ? ? ? ? ? ? ? ? String > TagBinary ? ? ? ? ? ? ? ? ? ?Binary > > If any person uses Specdata names to make a file xml for tag won't work in > my program, neither in mkvmerge and maybe in others. Would it be possible to > specify in Tags page what DTD file we should use? mkvtoolnix has been using the element names defined in libmatroska. These names were sometimes shortened in libmatroska for more code readability. That's the deferences you see here. Maybe I will add a field in specdata.xml for the older names so the old DTD can be generated as well. > On the other hand there is an error in TagDefault ID. The specifications > says it is 4484. But this ID is not recognized by mkvmerge and ffmpeg. In > them TagDefault ID is 44B4 That's strange because I haven't changed the tags specifications page [1] and it shows 4484 as well. But libmatroska has the wrong value. And I guess mkvmerge was tuned to work with files produced by mkvmerge... I guess we could switch to the bogus value because there are files existing with these values and lots of programs using libmatroska or ffmpeg anyway. One more reason to have code generated from the specs... [1] http://www.matroska.org/technical/specs/tagging/index.html > Regards. Santiago > > ----- Original Message ----- From: "Steve Lhomme" > To: "Matroska Devel" ; "WebM Discussion" > > Sent: Thursday, March 17, 2011 1:26 PM > Subject: [Matroska-devel] Spec Generator > > >> Hi everyone, >> >> I've recently been working on a tool to generate the Matroska >> specifications from an XML file [1]. The specification page is now >> *always* generated using this source file. So there is no mismatch >> possible. And it's also possible to track changes in the >> specifications that way [2]. >> >> I made a few tools to read/write that XML file [3]. The semantic >> tables in libmatroska2 are now automatically generated from the same >> XML source as the specs (and thanks to that I noticed a few >> differences). >> >> Feel free to use that XML to generate your own code or specifications. >> >> >> [1] >> https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/specdata.xml >> [2] >> http://matroska.svn.sourceforge.net/viewvc/matroska/trunk/foundation_src/spectool/specdata.xml?view=log >> [3] >> https://matroska.svn.sourceforge.net/svnroot/matroska/trunk/foundation_src/spectool/ >> >> -- >> Steve Lhomme >> Matroska association Chairman >> _______________________________________________ >> Matroska-devel mailing list >> Matroska-devel at lists.matroska.org >> http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel >> Read Matroska-Devel on GMane: >> http://dir.gmane.org/gmane.comp.multimedia.matroska.devel >> > > > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: > http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > -- Steve Lhomme Matroska association Chairman From jlpfld at gmail.com Sun Mar 20 13:28:23 2011 From: jlpfld at gmail.com (Hans) Date: Sun, 20 Mar 2011 12:28:23 +0000 (UTC) Subject: [Matroska-devel] PGS subtitles Message-ID: I have some sort of delay when I use PGS subtitles in MKV files. I use MPC-HC and it are clearly seen if I disable the Matroska in the MPC-HC and uses Haali Media splitter. Is there some settings I need to change in the Media Splitter Settings for it to work best? There is no problem if I activate Matroska in MPC-HC. From sporks5000 at gmail.com Sun Mar 20 13:51:13 2011 From: sporks5000 at gmail.com (=?ISO-8859-1?Q?Austin_Cot=E9_Williams?=) Date: Sun, 20 Mar 2011 08:51:13 -0400 Subject: [Matroska-devel] Bug in the spec or in libmatroska In-Reply-To: <48B7B1A6.2070407@haali.net> References: <20080809022658.55d7197a@homer> <48AD1445.8090708@haali.net> <200808212000.16010.moritz@bunkus.org> <48B7B1A6.2070407@haali.net> Message-ID: I don't know if it helps any, but since this bug is being discussed again, I thought I'd point this this thread of messages out. On Fri, Aug 29, 2008 at 4:21 AM, ?????? ?????? wrote: > Moritz Bunkus wrote: > > On Thursday 21 August 2008 09:07, ?????? ?????? wrote: > >>> The spec is listing the TagDefault element as [44][84]. > >>> libmatroska has KaxTagDefault_TheId (0x44B4, 2). > >>> Notice the 84 vs. B4. This looks like a typo. But I don't know > >>> which one has to be considered as right when implementing a demuxer. > >>> I would tend to trust the spec, but then real world files won't be > >>> playable (at least the one produced by mkvtoolnix). > >>> Anyway, one of them must be fixed ! > > > >> Yes, 4484 from the spec is correct. > > > > Does any program other than mkvmerge actually use this element? I mean > > KaxTagDefault with 4484. If not I'd suggest changing the specs and not > > the library. I don't mean demuxers but muxers. If there are only files > > created by mkvmerge out there with 0x4484 as KaxTagDefault's ID then > > invalidating those files might not be the best idea. > I use 4484 in my muxer and splitter, the splitter is widely deployed, > so I'm not sure what's the best thing to do in this situation. On the > other hand the feature wasn't much used since the problem was noticed > only recently. > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: > http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sjimeno at ya.com Sun Mar 20 14:38:12 2011 From: sjimeno at ya.com (Santiago Jimeno) Date: Sun, 20 Mar 2011 14:38:12 +0100 Subject: [Matroska-devel] Spec Generator In-Reply-To: References: <71A62ECD3F1144089922A07BC4ACFFA7@JSASUS> Message-ID: <039F05C320814777A8321589E9376E36@JSASUS> Hi Steve > > If any person uses Specdata names to make a file xml for tag won't work > > in > > my program, neither in mkvmerge and maybe in others. Would it be > > possible to > > specify in Tags page what DTD file we should use? > mkvtoolnix has been using the element names defined in libmatroska. > These names were sometimes shortened in libmatroska for more code > readability. That's the deferences you see here. Maybe I will add a > field in specdata.xml for the older names so the old DTD can be > generated as well. My program is in construction and I don't have problem in using any type of new dtd file. But at the moment there is only one: matroskatags.dtd used by mkvmerge and test1 files. Then I will use matroskatags.dtd until the new one is defined to avoid incompatibility with mkvmerge and other programs that uses it. >> On the other hand there is an error in TagDefault ID. The specifications >> says it is 4484. But this ID is not recognized by mkvmerge and ffmpeg. In >> them TagDefault ID is 44B4 >I guess we could switch to the bogus value because there are files >existing with these values and lots of programs using libmatroska or >ffmpeg anyway. One more reason to have code generated from the >specs... Regarding TagDefault ID, until it is corrected, the solution that I have added in my code is to treat it as if it has a double ID. Regards. Santiago From slhomme at matroska.org Sun Mar 20 15:11:01 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sun, 20 Mar 2011 15:11:01 +0100 Subject: [Matroska-devel] Spec Generator In-Reply-To: <039F05C320814777A8321589E9376E36@JSASUS> References: <71A62ECD3F1144089922A07BC4ACFFA7@JSASUS> <039F05C320814777A8321589E9376E36@JSASUS> Message-ID: In fact l only looked at older libmatroska. The value has been fixed in version 0.9.0, from april 2010. So I guess 0x4484 remains the supported value (and ffmpeg should be fixed). On Sun, Mar 20, 2011 at 2:38 PM, Santiago Jimeno wrote: > Hi Steve > >> > If any person uses Specdata names to make a file xml for tag won't work >> > > in >> > my program, neither in mkvmerge and maybe in others. Would it be > >> > possible to >> > specify in Tags page what DTD file we should use? >> mkvtoolnix has been using the element names defined in libmatroska. >> These names were sometimes shortened in libmatroska for more code >> readability. That's the deferences you see here. Maybe I will add a >> field in specdata.xml for the older names so the old DTD can be >> generated as well. > > My program is in construction and I don't have problem in using any type of > new dtd file. > But at the moment there is only one: ?matroskatags.dtd used by mkvmerge and > test1 files. > Then I will use matroskatags.dtd until the new one is defined to avoid > incompatibility with mkvmerge and other programs that ?uses it. > >>> On the other hand there is an error in TagDefault ID. The specifications >>> says it is 4484. But this ID is not recognized by mkvmerge and ffmpeg. In >>> them TagDefault ID is 44B4 >> >> I guess we could switch to the bogus value because there are files >> existing with these values and lots of programs using libmatroska or >> ffmpeg anyway. One more reason to have code generated from the >> specs... > > Regarding TagDefault ID, until it is corrected, the solution that I have > added in my code is to treat it as if it has a double ID. > > Regards. Santiago > > -- Steve Lhomme Matroska association Chairman From jlpfld at gmail.com Sun Mar 20 19:57:45 2011 From: jlpfld at gmail.com (Hans) Date: Sun, 20 Mar 2011 18:57:45 +0000 (UTC) Subject: [Matroska-devel] PGS subtitles References: Message-ID: Hans gmail.com> writes: > > I have some sort of delay when I use PGS subtitles in MKV files. I use MPC- HC > and it are clearly seen if I disable the Matroska in the MPC-HC and uses Haali > Media splitter. Is there some settings I need to change in the Media Splitter > Settings for it to work best? There is no problem if I activate Matroska in > MPC-HC. > > _______________________________________________ > Matroska-devel mailing list > Matroska-devel lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > > It's the subtitle that there are delay at. From slhomme at matroska.org Sun Mar 27 16:09:58 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sun, 27 Mar 2011 16:09:58 +0200 Subject: [Matroska-devel] Panasonic BDT300 bluray player doesn't play some mkv files In-Reply-To: <319C66AFC1E6F046A73197CB3034295B1B0E25@epexc01.enka.com.tr> References: <319C66AFC1E6F046A73197CB3034295B1B0E25@epexc01.enka.com.tr> Message-ID: Try to run your files through mkclean (or mkWDclean to be sure it makes files that should play everywhere) http://www.matroska.org/downloads/mkclean.html 2011/3/27 : > Dear Sir, > > I have?Panasonic BDT300 bluray player. However, it can't play some of the > mkv files through USB. > When I push the play button, it just doesn't start to play?and there is no > any notification appearing on LCD TV?( I mean?it doesn't say neither?"file > is not supported" nor "any other thing" - hope it is clear) > > For example: This player?reject to play Star Trek or The A-team movies but > it plays The Thourist?movie well although?the file extensions?are mkv. > I have enclosed?the?relevant mkv files detail in the attached excel file - I > hope it helps > > Do you have any idea what is wrong with the player? Why it doesn't support > some of the files? How can I fix it ? > > I would very much appreciate if you can help me about the solution > > Thanks &Kind regards, > Cem > -- Steve Lhomme Matroska association Chairman From cemtufekci at enka.com.tr Sun Mar 27 14:56:47 2011 From: cemtufekci at enka.com.tr (cemtufekci at enka.com.tr) Date: Sun, 27 Mar 2011 14:56:47 +0200 Subject: [Matroska-devel] Panasonic BDT300 bluray player doesn't play some mkv files Message-ID: <319C66AFC1E6F046A73197CB3034295B1B0E25@epexc01.enka.com.tr> Dear Sir, I have Panasonic BDT300 bluray player. However, it can't play some of the mkv files through USB. When I push the play button, it just doesn't start to play and there is no any notification appearing on LCD TV ( I mean it doesn't say neither "file is not supported" nor "any other thing" - hope it is clear) For example: This player reject to play Star Trek or The A-team movies but it plays The Thourist movie well although the file extensions are mkv. I have enclosed the relevant mkv files detail in the attached excel file - I hope it helps Do you have any idea what is wrong with the player? Why it doesn't support some of the files? How can I fix it ? I would very much appreciate if you can help me about the solution Thanks &Kind regards, Cem -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: moviedata.xlsx Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet Size: 20375 bytes Desc: moviedata.xlsx URL: From blwarburton at btconnect.com Mon Mar 28 15:18:38 2011 From: blwarburton at btconnect.com (BLW@BT) Date: Mon, 28 Mar 2011 14:18:38 +0100 Subject: [Matroska-devel] Haali Splitter 1.11.96.14 aspect ratio Message-ID: <93F755D9A7304E898A3D0D836B909B02@compaq> After the BBC HD change on 22nd Feb 2011 causing loss of video the Haali Splitter was updated to version 1.11.96.14. Video is now working again but at the wrong aspect ratio - it's displayed as 1440x1080. Tested with MPC-HC 1.5.1.2903 and ffdshow tryouts rev3760 Feb 18 2011 and Haali Splitter 1.11.96.14 MPC-HC is set to default aspect ratio. From cemtufekci at enka.com.tr Mon Mar 28 16:43:03 2011 From: cemtufekci at enka.com.tr (cemtufekci at enka.com.tr) Date: Mon, 28 Mar 2011 17:43:03 +0300 Subject: [Matroska-devel] Panasonic BDT300 bluray player doesn't play some mkv files In-Reply-To: References: <319C66AFC1E6F046A73197CB3034295B1B0E25@epexc01.enka.com.tr> Message-ID: <319C66AFC1E6F046A73197CB3034295B03BA4CDE@epexc01.enka.com.tr> Hi Steve, Thanks alot for your promt reply! Sorry, I have bad news: When I click on "mkWDclean.exe file", pops up a black screen for like less than a second and then it closes back. Then, to solve the problem, I opened the file with right click and choosed open with mkWDclean. Then, it is opened. Anyway, I run the file thru mkWDclean as you pointed out below but unfortunately, nothing is changed. It doesn't play it at all. Just for your info; I used Ripbot264 program for this problem although my aim is not to rip the file. As as result; it took several hours for one movie and it decreased the file size from 3,5 GB to 1,2 GB but however, new ripped file worked on this bluray player without any problem. I think this program changes some video settings of the file but I don't prefer this way since it takes long time and decrease the file size. Could you please check the difference between the files ( for example: Startrek and The Tourist) in the attachment ? Which settings might cause this problem? What am I supposed to do now? Kind regards, Cem -----Original Message----- From: Steve Lhomme [mailto:slhomme at matroska.org] Sent: Sunday, March 27, 2011 5:10 PM To: Cem Tufekci Cc: contact at matroska.org; matroska-devel at lists.matroska.org Subject: Re: Panasonic BDT300 bluray player doesn't play some mkv files Try to run your files through mkclean (or mkWDclean to be sure it makes files that should play everywhere) http://www.matroska.org/downloads/mkclean.html 2011/3/27 : > Dear Sir, > > I have Panasonic BDT300 bluray player. However, it can't play some of > the mkv files through USB. > When I push the play button, it just doesn't start to play and there > is no any notification appearing on LCD TV ( I mean it doesn't say > neither "file is not supported" nor "any other thing" - hope it is > clear) > > For example: This player reject to play Star Trek or The A-team movies > but it plays The Thourist movie well although the file extensions are mkv. > I have enclosed the relevant mkv files detail in the attached excel > file - I hope it helps > > Do you have any idea what is wrong with the player? Why it doesn't > support some of the files? How can I fix it ? > > I would very much appreciate if you can help me about the solution > > Thanks &Kind regards, > Cem > -- Steve Lhomme Matroska association Chairman -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: moviedata.xlsx Type: application/octet-stream Size: 20590 bytes Desc: moviedata.xlsx URL: From cemtufekci at enka.com.tr Wed Mar 30 17:39:56 2011 From: cemtufekci at enka.com.tr (cemtufekci at enka.com.tr) Date: Wed, 30 Mar 2011 18:39:56 +0300 Subject: [Matroska-devel] FW: Panasonic BDT300 bluray player doesn't play some mkv files Message-ID: <319C66AFC1E6F046A73197CB3034295B03BE33F5@epexc01.enka.com.tr> Hi Steve, Sorry for pushing you again but if Matroska can't solve this problem, no one can do it. I have checked almost all the forums on internet and saw that almost every bluray player owners have the same problem. Please help us we don't wanna use any other file format than mkv extension. Meanwhile, I don't know whether you are able to help/push Panasonic people to issue an update in order to solve this problem or not. I am asking because, I am afraid that they will not act about it within a short time. You are only the chance for us:) Many thanks & best regards, Cem ________________________________ From: Cem Tufekci Sent: Monday, March 28, 2011 5:43 PM To: 'Steve Lhomme' Cc: contact at matroska.org; matroska-devel at lists.matroska.org Subject: RE: Panasonic BDT300 bluray player doesn't play some mkv files Hi Steve, Thanks alot for your promt reply! Sorry, I have bad news: When I click on "mkWDclean.exe file", pops up a black screen for like less than a second and then it closes back. Then, to solve the problem, I opened the file with right click and choosed open with mkWDclean. Then, it is opened. Anyway, I run the file thru mkWDclean as you pointed out below but unfortunately, nothing is changed. It doesn't play it at all. Just for your info; I used Ripbot264 program for this problem although my aim is not to rip the file. As as result; it took several hours for one movie and it decreased the file size from 3,5 GB to 1,2 GB but however, new ripped file worked on this bluray player without any problem. I think this program changes some video settings of the file but I don't prefer this way since it takes long time and decrease the file size. Could you please check the difference between the files ( for example: Startrek and The Tourist) in the attachment ? Which settings might cause this problem? What am I supposed to do now? Kind regards, Cem -----Original Message----- From: Steve Lhomme [mailto:slhomme at matroska.org] Sent: Sunday, March 27, 2011 5:10 PM To: Cem Tufekci Cc: contact at matroska.org; matroska-devel at lists.matroska.org Subject: Re: Panasonic BDT300 bluray player doesn't play some mkv files Try to run your files through mkclean (or mkWDclean to be sure it makes files that should play everywhere) http://www.matroska.org/downloads/mkclean.html 2011/3/27 : > Dear Sir, > > I have Panasonic BDT300 bluray player. However, it can't play some of > the mkv files through USB. > When I push the play button, it just doesn't start to play and there > is no any notification appearing on LCD TV ( I mean it doesn't say > neither "file is not supported" nor "any other thing" - hope it is > clear) > > For example: This player reject to play Star Trek or The A-team movies > but it plays The Thourist movie well although the file extensions are mkv. > I have enclosed the relevant mkv files detail in the attached excel > file - I hope it helps > > Do you have any idea what is wrong with the player? Why it doesn't > support some of the files? How can I fix it ? > > I would very much appreciate if you can help me about the solution > > Thanks &Kind regards, > Cem > -- Steve Lhomme Matroska association Chairman -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: moviedata.xlsx Type: application/octet-stream Size: 20590 bytes Desc: moviedata.xlsx URL: From moritz at bunkus.org Wed Mar 30 17:56:53 2011 From: moritz at bunkus.org (Moritz Bunkus) Date: Wed, 30 Mar 2011 17:56:53 +0200 Subject: [Matroska-devel] FW: Panasonic BDT300 bluray player doesn't play some mkv files In-Reply-To: <319C66AFC1E6F046A73197CB3034295B03BE33F5@epexc01.enka.com.tr> References: <319C66AFC1E6F046A73197CB3034295B03BE33F5@epexc01.enka.com.tr> Message-ID: <201103301757.00922.moritz@bunkus.org> Hey, see also http://www.bunkus.org/videotools/mkvtoolnix/faq.html#header_removal_compression for a likely explanation and more or less easy solution. Regards, Mosu -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 198 bytes Desc: This is a digitally signed message part. URL: From slhomme at matroska.org Wed Mar 30 20:46:26 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Wed, 30 Mar 2011 20:46:26 +0200 Subject: [Matroska-devel] FW: Panasonic BDT300 bluray player doesn't play some mkv files In-Reply-To: <201103301757.00922.moritz@bunkus.org> References: <319C66AFC1E6F046A73197CB3034295B03BE33F5@epexc01.enka.com.tr> <201103301757.00922.moritz@bunkus.org> Message-ID: mkWDclean removes it by default. So I don't know why the player refuses that file. Maybe a different H264 profile. On Wed, Mar 30, 2011 at 5:56 PM, Moritz Bunkus wrote: > Hey, > > see also > http://www.bunkus.org/videotools/mkvtoolnix/faq.html#header_removal_compression > for a likely explanation and more or less easy solution. > > Regards, > Mosu > > _______________________________________________ > Matroska-devel mailing list > Matroska-devel at lists.matroska.org > http://lists.matroska.org/cgi-bin/mailman/listinfo/matroska-devel > Read Matroska-Devel on GMane: http://dir.gmane.org/gmane.comp.multimedia.matroska.devel > -- Steve Lhomme Matroska association Chairman From slhomme at matroska.org Thu Mar 31 22:20:14 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Thu, 31 Mar 2011 22:20:14 +0200 Subject: [Matroska-devel] weba audio format In-Reply-To: References: <201103311652.05410.mconstable@gmail.com> Message-ID: On Thu, Mar 31, 2011 at 10:09 PM, Monty Montgomery wrote: >> OK, by compressed header in Matroska that means "stripping header". A >> whole Block is "compressed". > > Right. ?I literally meant 'compressing the private headers'. > Apologies for tripping on the terminology. > >> I >> don't think applying zlib on Vorbis packets will have much effects >> (otherwise there's a problem in Vorbis). > > You'd get nothing on the audio packets, but the headers are not as > dense as the audio packets. ?gzip (and I imagine bzip2 and 7zip) all > manage to get some traction on the Vorbis initial header triad last I > checked. That could be investigated, because right now one of the big problem in WebM is the size of the Vorbis init packet. It would be very to add an extension to Matroska to have it compressed. In fact being a codec private it would just take calling the codec "A_VORBIS2" and treating the codec private as zlib compressed rather than raw. Adding support in all OSS players will be very fast and easy. -- Steve Lhomme Matroska association Chairman From xiphmont at gmail.com Thu Mar 31 22:23:26 2011 From: xiphmont at gmail.com (Monty Montgomery) Date: Thu, 31 Mar 2011 16:23:26 -0400 Subject: [Matroska-devel] weba audio format In-Reply-To: References: <201103311652.05410.mconstable@gmail.com> Message-ID: > That could be investigated, because right now one of the big problem > in WebM is the size of the Vorbis init packet. It would be very to add > an extension to Matroska to have it compressed. In fact being a codec > private it would just take calling the codec "A_VORBIS2" and treating > the codec private as zlib compressed rather than raw. Adding support > in all OSS players will be very fast and easy. In my fantasy world, we had enough warning ahead of time to just eliminate it. Since it's too late and we're closer to Detroit than Utopia, I decided to be content doing it differently next time (eg, see CELT). Ah well. The compressed alternative is at least quicker. We can dream. Monty