From crockabiscuit at gmail.com Tue Aug 2 14:09:36 2011 From: crockabiscuit at gmail.com (crocket) Date: Tue, 2 Aug 2011 21:09:36 +0900 Subject: [Matroska-devel] I have a feature request about matroska tags Message-ID: I don't know where else to ask this, so forgive me for asking this mailing list. I want to add a tag entry that describes the name of the anime that a song belongs to. For example, irony sung by ClariS is the opening song of Ore no Imouto ga Konna ni Kawaii Wake ga Nai ( ???????????????? ). Therefore, "irony" is a soundtrack of that anime. What would be the proper tag entry for the name of that anime? I couldn't find a proper one in both ID3v2 and matroska tag specification. If there is no such thing, can you please consider making a new tag entry for that kind of stuff? From therealmsj at gmail.com Wed Aug 3 09:20:56 2011 From: therealmsj at gmail.com (therealmsj at gmail.com) Date: Wed, 3 Aug 2011 09:20:56 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation Message-ID: mkvalidator complains about "first block for video track # not being a key-frame". Its only a warning but why complain about something thats totally valid - in this case the CueBlockNumber points at the key-frame block. I could understand the warning if the CueBlockNumber element had not been present or was pointing at the wrong block. what seems to be missing from mkvalidator is a "cues key-validation" - if the first block is not a video key-frame and CueBlockNumber is not present it should generate a warning. A warning because there does not seem to be any requirement that cues should only contain references to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - writing a wrong block number does not generate any error. please comment. Thanks in advance /MSJ From slhomme at matroska.org Sun Aug 14 16:13:04 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sun, 14 Aug 2011 16:13:04 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation In-Reply-To: References: Message-ID: It is a warning because it's not optimal for seeking. A lot of data will be read for nothing in this case, unless the Cluster is not referenced in the Cues and if the Cues are not damaged. I don't think there are much players that make use of the CueBlockNumber element at all. Steve On Wed, Aug 3, 2011 at 9:20 AM, wrote: > > mkvalidator complains about "first block for video track # not being a > key-frame". Its only a warning but why complain about > something thats totally valid - in this case the CueBlockNumber points at > the key-frame block. I could understand the warning if the > CueBlockNumber element had not been present or was pointing at the wrong > block. > > what seems to be missing from mkvalidator is a "cues key-validation" - if > the first block is not a video key-frame and CueBlockNumber is not > present it should generate a warning. A warning because there does not seem > to be any requirement that cues should only contain references > to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - > writing a wrong block number does not generate any error. > > please comment. > > Thanks in advance > > /MSJ > > > > > > _______________________________________________ > 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 michael.steen.jensen at tdcadsl.dk Tue Aug 16 18:22:19 2011 From: michael.steen.jensen at tdcadsl.dk (michael.steen.jensen at tdcadsl.dk) Date: Tue, 16 Aug 2011 18:22:19 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation References: Message-ID: <91E3D9088FB44497852ABEB323D49E0C@AMDX2PC1> Hi Steve Thanks for the reply. Just to explain: Could easily change my MKV muxer so the warnings disappears - aligning the clusters on video key-frame boundaries. However for highdef video files this is likely to cause an even more serious problem than say slow seeking - namely that playing the file does not work properly. If the cluster size gets too big, players like VLC most likely ends up flushing its buffers periodically and playback suffers. So the recommended way must be to keep the clusters at a reasonable size say 512kb .. 1.5Mb and not necessarily align the clusters on video key-boundaries. The matroska format seems to be prepared for this approach via the CueBlockNumber so the mkvalidator warning, still makes little sense to me... Using the CueBlockNumber a player could easily skip the specified number of blocks in order to find the "keyframe block" - and yes, its probably just as easy without the CueBlockNumber information :-) /MSJ ----- Original Message ----- From: "Steve Lhomme" Newsgroups: gmane.comp.multimedia.matroska.devel To: "Discussion about the current and future development of Matroska" Sent: Sunday, August 14, 2011 4:13 PM Subject: Re: mkvalidator cluster/cues validation > It is a warning because it's not optimal for seeking. A lot of data > will be read for nothing in this case, unless the Cluster is not > referenced in the Cues and if the Cues are not damaged. > > I don't think there are much players that make use of the > CueBlockNumber element at all. > > Steve > > On Wed, Aug 3, 2011 at 9:20 AM, wrote: >> >> mkvalidator complains about "first block for video track # not being a >> key-frame". Its only a warning but why complain about >> something thats totally valid - in this case the CueBlockNumber points at >> the key-frame block. I could understand the warning if the >> CueBlockNumber element had not been present or was pointing at the wrong >> block. >> >> what seems to be missing from mkvalidator is a "cues key-validation" - if >> the first block is not a video key-frame and CueBlockNumber is not >> present it should generate a warning. A warning because there does not >> seem >> to be any requirement that cues should only contain references >> to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - >> writing a wrong block number does not generate any error. >> >> please comment. >> >> Thanks in advance >> >> /MSJ >> >> >> >> >> >> _______________________________________________ >> 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 > _______________________________________________ > 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 Wed Aug 17 13:21:10 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Wed, 17 Aug 2011 13:21:10 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation In-Reply-To: <91E3D9088FB44497852ABEB323D49E0C@AMDX2PC1> References: <91E3D9088FB44497852ABEB323D49E0C@AMDX2PC1> Message-ID: Have you tried the large Cluster approach ? That's what mkclean does with --remux regardless of the Cluster and it works fine. I don't think there are any player that loads a whole Cluster in memory (although that's one of the original goal). Steve On Tue, Aug 16, 2011 at 6:22 PM, wrote: > Hi Steve > > Thanks for the reply. > > Just to explain: > > Could easily change my MKV muxer so the warnings disappears - aligning the > clusters on video key-frame boundaries. However for highdef video files this > is likely to cause an even more serious problem than > say slow seeking - namely that playing the file does not work properly. If > the cluster size gets too big, players like VLC most likely ends up flushing > its buffers periodically and playback suffers. > > So the recommended way must be to keep the clusters at a reasonable size say > 512kb .. 1.5Mb and not necessarily align the clusters on video > key-boundaries. > > The matroska format seems to be prepared for this approach via the > CueBlockNumber so the mkvalidator warning, ?still makes little sense to > me... > > Using the CueBlockNumber a player could easily skip the specified number of > blocks in order to find the "keyframe block" - and yes, its probably just as > easy without the CueBlockNumber information :-) > > /MSJ > > > > ----- Original Message ----- From: "Steve Lhomme" > Newsgroups: gmane.comp.multimedia.matroska.devel > To: "Discussion about the current and future development of Matroska" > > Sent: Sunday, August 14, 2011 4:13 PM > Subject: Re: mkvalidator cluster/cues validation > > >> It is a warning because it's not optimal for seeking. A lot of data >> will be read for nothing in this case, unless the Cluster is not >> referenced in the Cues and if the Cues are not damaged. >> >> I don't think there are much players that make use of the >> CueBlockNumber element at all. >> >> Steve >> >> On Wed, Aug 3, 2011 at 9:20 AM, ? wrote: >>> >>> mkvalidator complains about "first block for video track # not being a >>> key-frame". Its only a warning but why complain about >>> something thats totally valid - in this case the CueBlockNumber points at >>> the key-frame block. I could understand the warning if the >>> CueBlockNumber element had not been present or was pointing at the wrong >>> block. >>> >>> what seems to be missing from mkvalidator is a "cues key-validation" - if >>> the first block is not a video key-frame and CueBlockNumber is not >>> present it should generate a warning. A warning because there does not >>> seem >>> to be any requirement that cues should only contain references >>> to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - >>> writing a wrong block number does not generate any error. >>> >>> please comment. >>> >>> Thanks in advance >>> >>> /MSJ >>> >>> >>> >>> >>> >>> _______________________________________________ >>> 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 >> _______________________________________________ >> 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 therealmsj at gmail.com Wed Aug 17 19:48:36 2011 From: therealmsj at gmail.com (msj) Date: Wed, 17 Aug 2011 19:48:36 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation References: <91E3D9088FB44497852ABEB323D49E0C@AMDX2PC1> Message-ID: Yes, I tried that and ran into the problem of not being able to play all mkv files perfectly. Investigated the matter and found that by reducing the cluster-size to a maximum of 512k-1Mb, the problem completely disappeared - as far as I remember the critical cluster size was around 1.2-1.5MB/cluster. Should be said that my own PC only has a AMD athlon 64X2 / 4200+ and a "slow" green-WD HD. Regarding the VLC player , maybe my conclusion is wrong but using the "process explorer" and looking at the I/O bytes history it seems that access to the file happens cluster-wise. With cluster size 1.5Mb , the I/O history repeatedly shifts betwen zero and 1.5Mb, with 1 Mb cluster size - between 0 and 1Mb. With cluster sizes limited by time (2 seconds) , a much more contineous "I/O bytes history" appeared. Anyway , compared my output with some mkv files generated by mkvmerge - observed the same mkvalidator warnings - clusters seemed to be limited by size / time, not necessarily aligned on video key frame boundaries. One of the mkvmerge files I generated myself using latest mkvmerge with default command line options. mkvclean I have not yet tried. /MSJ "Steve Lhomme" wrote in message news:CAOXsMFJuWk3=83RRVQeqgQtYEJtHhaE4UAhYMSCNyZdNPyBgrA at mail.gmail.com... Have you tried the large Cluster approach ? That's what mkclean does with --remux regardless of the Cluster and it works fine. I don't think there are any player that loads a whole Cluster in memory (although that's one of the original goal). Steve On Tue, Aug 16, 2011 at 6:22 PM, wrote: > Hi Steve > > Thanks for the reply. > > Just to explain: > > Could easily change my MKV muxer so the warnings disappears - aligning the > clusters on video key-frame boundaries. However for highdef video files > this > is likely to cause an even more serious problem than > say slow seeking - namely that playing the file does not work properly. If > the cluster size gets too big, players like VLC most likely ends up > flushing > its buffers periodically and playback suffers. > > So the recommended way must be to keep the clusters at a reasonable size > say > 512kb .. 1.5Mb and not necessarily align the clusters on video > key-boundaries. > > The matroska format seems to be prepared for this approach via the > CueBlockNumber so the mkvalidator warning, still makes little sense to > me... > > Using the CueBlockNumber a player could easily skip the specified number > of > blocks in order to find the "keyframe block" - and yes, its probably just > as > easy without the CueBlockNumber information :-) > > /MSJ > > > > ----- Original Message ----- From: "Steve Lhomme" > Newsgroups: gmane.comp.multimedia.matroska.devel > To: "Discussion about the current and future development of Matroska" > > Sent: Sunday, August 14, 2011 4:13 PM > Subject: Re: mkvalidator cluster/cues validation > > >> It is a warning because it's not optimal for seeking. A lot of data >> will be read for nothing in this case, unless the Cluster is not >> referenced in the Cues and if the Cues are not damaged. >> >> I don't think there are much players that make use of the >> CueBlockNumber element at all. >> >> Steve >> >> On Wed, Aug 3, 2011 at 9:20 AM, wrote: >>> >>> mkvalidator complains about "first block for video track # not being a >>> key-frame". Its only a warning but why complain about >>> something thats totally valid - in this case the CueBlockNumber points >>> at >>> the key-frame block. I could understand the warning if the >>> CueBlockNumber element had not been present or was pointing at the wrong >>> block. >>> >>> what seems to be missing from mkvalidator is a "cues key-validation" - >>> if >>> the first block is not a video key-frame and CueBlockNumber is not >>> present it should generate a warning. A warning because there does not >>> seem >>> to be any requirement that cues should only contain references >>> to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - >>> writing a wrong block number does not generate any error. >>> >>> please comment. >>> >>> Thanks in advance >>> >>> /MSJ >>> >>> >>> >>> >>> >>> _______________________________________________ >>> 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 >> _______________________________________________ >> 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 _______________________________________________ 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 lists at on-track.ca Wed Aug 17 10:35:58 2011 From: lists at on-track.ca (Watcher) Date: Wed, 17 Aug 2011 08:35:58 +0000 (UTC) Subject: [Matroska-devel] Anamorphic video plays as 3:2 Message-ID: I have an anamorphic video that is playing in MPC-HC as 3:2. If I switch MPC-HC to use the internal matroska filter is plays at the correct 16:9 so I assume it must be Haali causing the problem. The info collected below from Haali seems to show that is does recognize it being anamorphic, but for some reason it is playing as 3:2. Note that the window does open to 16:9 initially for a fraction of a second before resizing to 3:2. Filter : Haali Media Splitter - CLSID : {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D} - Connected to: CLSID: {04FE9017-F873-410E-871E-AB91661A4EF7} Filter: ffdshow Video Decoder Pin: In - Connection media type: Video: MPEG4 Video (H264) 720x480 (853:480) 23.98fps AM_MEDIA_TYPE: majortype: MEDIATYPE_Video {73646976-0000-0010-8000-00AA00389B71} subtype: Unknown GUID Name {31435641-0000-0010-8000-00AA00389B71} formattype: FORMAT_MPEG2_VIDEO {E06D80E3-DB46-11CF-B4D1-00805F6CBBEA} bFixedSizeSamples: 0 bTemporalCompression: 0 lSampleSize: 1 cbFormat: 169 VIDEOINFOHEADER: rcSource: (0,0)-(0,0) rcTarget: (0,0)-(0,0) dwBitRate: 0 dwBitErrorRate: 0 AvgTimePerFrame: 417083 VIDEOINFOHEADER2: dwInterlaceFlags: 0x00000000 dwCopyProtectFlags: 0x00000000 dwPictAspectRatioX: 853 dwPictAspectRatioY: 480 dwControlFlags: 0x00000000 dwReserved2: 0x00000000 MPEG2VIDEOINFO: dwStartTimeCode: 0 cbSequenceHeader: 37 dwProfile: 0x00000064 dwLevel: 0x0000001e dwFlags: 0x00000004 BITMAPINFOHEADER: biSize: 40 biWidth: 720 biHeight: 480 biPlanes: 1 biBitCount: 24 biCompression: avc1 biSizeImage: 0 biXPelsPerMeter: 720 biYPelsPerMeter: 853 biClrUsed: 0 biClrImportant: 0 pbFormat: 0000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 0020: 00 00 00 00 00 00 00 00 3b 5d 06 00 00 00 00 00 ........;]...... 0030: 00 00 00 00 00 00 00 00 55 03 00 00 e0 01 00 00 ........U...?... 0040: 00 00 00 00 00 00 00 00 28 00 00 00 d0 02 00 00 ........(...?... 0050: e0 01 00 00 01 00 18 00 61 76 63 31 00 00 00 00 ?.......avc1.... 0060: d0 02 00 00 55 03 00 00 00 00 00 00 00 00 00 00 ?...U........... 0070: 00 00 00 00 25 00 00 00 64 00 00 00 1e 00 00 00 ....%...d....... 0080: 04 00 00 00|00 1c 67 64 00 1e ac 34 e7 02 d0 f6 ......gd..?4?.?? 0090: ff c0 d5 40 b4 04 00 00 0f a4 00 02 ee 02 3c 58 ???@?....?..?. References: Message-ID: Please run mkvinfo to show what's in the file, not what software interpret from it. On Wed, Aug 17, 2011 at 10:35 AM, Watcher wrote: > I have an anamorphic video that is playing in MPC-HC as 3:2. If I switch MPC-HC > to use the internal matroska filter is plays at the correct 16:9 so I assume it > must be Haali causing the problem. > > The info collected below from Haali seems to show that is does recognize it > being anamorphic, but for some reason it is playing as 3:2. Note that the window > does open to 16:9 initially for a fraction of a second before resizing to 3:2. > > > Filter : Haali Media Splitter - CLSID : {55DA30FC-F16B-49FC-BAA5-AE59FC65F82D} > > - Connected to: > > CLSID: {04FE9017-F873-410E-871E-AB91661A4EF7} > Filter: ffdshow Video Decoder > Pin: In > > - Connection media type: > > Video: MPEG4 Video (H264) 720x480 (853:480) 23.98fps > > AM_MEDIA_TYPE: > majortype: MEDIATYPE_Video {73646976-0000-0010-8000-00AA00389B71} > subtype: Unknown GUID Name {31435641-0000-0010-8000-00AA00389B71} > formattype: FORMAT_MPEG2_VIDEO {E06D80E3-DB46-11CF-B4D1-00805F6CBBEA} > bFixedSizeSamples: 0 > bTemporalCompression: 0 > lSampleSize: 1 > cbFormat: 169 > > VIDEOINFOHEADER: > rcSource: (0,0)-(0,0) > rcTarget: (0,0)-(0,0) > dwBitRate: 0 > dwBitErrorRate: 0 > AvgTimePerFrame: 417083 > > VIDEOINFOHEADER2: > dwInterlaceFlags: 0x00000000 > dwCopyProtectFlags: 0x00000000 > dwPictAspectRatioX: 853 > dwPictAspectRatioY: 480 > dwControlFlags: 0x00000000 > dwReserved2: 0x00000000 > > MPEG2VIDEOINFO: > dwStartTimeCode: 0 > cbSequenceHeader: 37 > dwProfile: 0x00000064 > dwLevel: 0x0000001e > dwFlags: 0x00000004 > > BITMAPINFOHEADER: > biSize: 40 > biWidth: 720 > biHeight: 480 > biPlanes: 1 > biBitCount: 24 > biCompression: avc1 > biSizeImage: 0 > biXPelsPerMeter: 720 > biYPelsPerMeter: 853 > biClrUsed: 0 > biClrImportant: 0 > > pbFormat: > 0000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ > 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ > 0020: 00 00 00 00 00 00 00 00 3b 5d 06 00 00 00 00 00 ........;]...... > 0030: 00 00 00 00 00 00 00 00 55 03 00 00 e0 01 00 00 ........U...?... > 0040: 00 00 00 00 00 00 00 00 28 00 00 00 d0 02 00 00 ........(...?... > 0050: e0 01 00 00 01 00 18 00 61 76 63 31 00 00 00 00 ?.......avc1.... > 0060: d0 02 00 00 55 03 00 00 00 00 00 00 00 00 00 00 ?...U........... > 0070: 00 00 00 00 25 00 00 00 64 00 00 00 1e 00 00 00 ....%...d....... > 0080: 04 00 00 00|00 1c 67 64 00 1e ac 34 e7 02 d0 f6 ......gd..?4?.?? > 0090: ff c0 d5 40 b4 04 00 00 0f a4 00 02 ee 02 3c 58 ???@?....?..?. 00a0: b6 78 00 05 68 ee b2 c8 b0 ? ? ? ? ? ? ? ? ? ? ??x..h???? > > - Enumerated media type 0: > > Set as the current media type > > > > _______________________________________________ > 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 chanam.geo at yahoo.com Thu Aug 18 22:44:29 2011 From: chanam.geo at yahoo.com (Arick Chan) Date: Thu, 18 Aug 2011 13:44:29 -0700 (PDT) Subject: [Matroska-devel] Haali Media Splitter Bug with MP4 files. Message-ID: <1313700269.68958.YahooMailNeo@web36703.mail.mud.yahoo.com> Dear Author of Haali Media Splitter, For some unknown reason, Haali Media Splitter Version 1.11.96.14 cannot demux this variable frame rate MP4 (http://www.archive.org/download/AdelikatTerrotimMindnomadY05h1sDsNewSuperMarioBros.In2108.08/nsmb-tas-adelikatterrotimmindnomady05h1.mp4) made with MP4Box Version 0.4.6-DEV-rev2735 correctly.? It plays the file at a constant 25 FPS instead of variable frame rate.? Media Player Classic - Home Cinema 1.5.0.2877 and VLC Media Player Version 1.1.11 internal demuxers play the file back correctly.? I cannot tell why this is happening as other variable frame rate MP4s created with the same MP4Box version works correctly. Regards, -Arick -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at on-track.ca Fri Aug 19 03:12:25 2011 From: lists at on-track.ca (Watcher) Date: Fri, 19 Aug 2011 01:12:25 +0000 (UTC) Subject: [Matroska-devel] Anamorphic video plays as 3:2 References: Message-ID: > The info + EBML head |+ Doc type: matroska |+ Doc type version: 1 |+ Doc type read version: 1 + Segment, size 240286424 |+ Seek head (subentries will be skipped) |+ EbmlVoid (size: 3996) |+ Segment information | + Timecode scale: 1000000 | + Muxing application: libebml v0.7.7 + libmatroska v0.8.1 | + Writing application: mkvmerge v2.2.0 ('Turn It On Again') built on Mar 4 2008 12:58:26 | + Duration: 1431.263s (00:23:51.263) | + Date: Sun Apr 26 15:02:05 2009 UTC | + Segment UID: 0x85 0xa8 0x0a 0x4a 0x21 0x6e 0xea 0x6f 0x85 0xe8 0x69 0x83 0x87 0x6d 0xf1 0x57 |+ Segment tracks | + A track | + Track number: 1 | + Track UID: 1131611014 | + Track type: video | + Enabled: 1 | + Default flag: 1 | + Forced flag: 0 | + Lacing flag: 0 | + MinCache: 1 | + Timecode scale: 1 | + Max BlockAddition ID: 0 | + Codec ID: V_MPEG4/ISO/AVC | + Codec decode all: 1 | + CodecPrivate, length 39 (h.264 profile: High @L3.0) | + Default duration: 41.708ms (23.976 fps for a video track) | + Language: und | + Video track | + Pixel width: 720 | + Pixel height: 480 | + Interlaced: 0 | + Display width: 853 | + Display height: 480 | + A track | + Track number: 2 | + Track UID: 792881594 | + Track type: audio | + Enabled: 1 | + Default flag: 1 | + Forced flag: 0 | + Lacing flag: 1 | + MinCache: 0 | + Timecode scale: 1 | + Max BlockAddition ID: 0 | + Codec ID: A_AAC | + Codec decode all: 1 | + CodecPrivate, length 2 | + Default duration: 21.333ms (46.875 fps for a video track) | + Language: und | + Audio track | + Sampling frequency: 48000 | + Channels: 2 | + A track | + Track number: 3 | + Track UID: 3621949353 | + Track type: subtitles | + Enabled: 1 | + Default flag: 1 | + Forced flag: 0 | + Lacing flag: 0 | + MinCache: 0 | + Timecode scale: 1 | + Max BlockAddition ID: 0 | + Codec ID: S_TEXT/ASS | + Codec decode all: 1 | + CodecPrivate, length 1080 | + Language: und |+ EbmlVoid (size: 1024) |+ Attachments | + Attached | + File name: gisha.ttf | + Mime type: application/x-truetype-font | + File data, size: 72932 | + File UID: 174024383 |+ Chapters | + EditionEntry | + EditionFlagHidden: 0 | + EditionFlagDefault: 0 | + EditionUID: 3751638146 | + ChapterAtom | + ChapterUID: 4180662449 | + ChapterTimeStart: 00:00:00.000000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: On-Spot Filming (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3501511344 | + ChapterTimeStart: 00:00:35.577000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Introduction (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3171144100 | + ChapterTimeStart: 00:02:35.489000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Weight-Training Start (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3892135326 | + ChapterTimeStart: 00:03:06.019000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3105298855 | + ChapterTimeStart: 00:03:48.770000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3720898717 | + ChapterTimeStart: 00:04:23.346000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: After Weight-Training (First Time) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 44885934 | + ChapterTimeStart: 00:05:35.835000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Ending Scene 1 | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1141046461 | + ChapterTimeStart: 00:06:35.937000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Introduction (Came Back Again) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3676670123 | + ChapterTimeStart: 00:07:00.670000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups (Came Back Again) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2392883601 | + ChapterTimeStart: 00:07:22.317000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups (Came Back Again) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 141537983 | + ChapterTimeStart: 00:07:44.422000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats (Came Back Again) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 560446601 | + ChapterTimeStart: 00:08:04.275000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: After Training (Came Back Again) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2522595982 | + ChapterTimeStart: 00:08:43.440000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Ending Scene 2 | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3695657117 | + ChapterTimeStart: 00:09:43.541000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Hungry at Night (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3471934614 | + ChapterTimeStart: 00:09:56.763000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Camisole 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2804572548 | + ChapterTimeStart: 00:10:18.451000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Camisole 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 374831790 | + ChapterTimeStart: 00:10:58.157000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Lingerie 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2843673473 | + ChapterTimeStart: 00:11:19.846000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Gym Uniform 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 128758458 | + ChapterTimeStart: 00:11:41.534000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Eurobeat 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3500554657 | + ChapterTimeStart: 00:12:03.222000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Eurobeat 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 4114661813 | + ChapterTimeStart: 00:12:42.929000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Special A (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1058786218 | + ChapterTimeStart: 00:13:04.617000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Push-ups Special B (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1715744906 | + ChapterTimeStart: 00:13:26.305000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Camisole 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1245569192 | + ChapterTimeStart: 00:13:47.994000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Camisole 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1906346140 | + ChapterTimeStart: 00:14:27.700000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Lingerie 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 535115189 | + ChapterTimeStart: 00:14:49.388000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Gym Uniform 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1536549038 | + ChapterTimeStart: 00:15:11.077000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Sucking-in-Stomach 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 54320533 | + ChapterTimeStart: 00:15:32.765000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Sucking-in-Stomach 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2526299018 | + ChapterTimeStart: 00:16:12.471000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Special A (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 849328826 | + ChapterTimeStart: 00:16:34.160000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Sit-ups Special B (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3728166819 | + ChapterTimeStart: 00:16:55.848000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Camisole 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2463731891 | + ChapterTimeStart: 00:17:17.536000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Camisole 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1908471433 | + ChapterTimeStart: 00:17:57.243000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Lingerie 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2431692183 | + ChapterTimeStart: 00:18:18.931000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Gym Uniform 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3797758855 | + ChapterTimeStart: 00:18:40.620000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Breathing 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2899192715 | + ChapterTimeStart: 00:19:02.308000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Breathing 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 804111237 | + ChapterTimeStart: 00:19:42.014000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Special A (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 4090058640 | + ChapterTimeStart: 00:20:03.702000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Squats Special B (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1835093403 | + ChapterTimeStart: 00:20:25.391000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Bed 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 2869796226 | + ChapterTimeStart: 00:20:47.079000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Bounce 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1583836337 | + ChapterTimeStart: 00:21:08.767000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Bounce 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 925790369 | + ChapterTimeStart: 00:21:48.474000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Boobs 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 4273610625 | + ChapterTimeStart: 00:22:10.162000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Boobs 24 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 1478247040 | + ChapterTimeStart: 00:22:49.868000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Staring 12 Reps (Bonus) | + ChapterLanguage: eng | + ChapterAtom | + ChapterUID: 3949401006 | + ChapterTimeStart: 00:23:11.557000000 | + ChapterFlagHidden: 0 | + ChapterFlagEnabled: 1 | + ChapterDisplay | + ChapterString: Count Staring 24 Reps (Bonus) | + ChapterLanguage: eng |+ EbmlVoid (size: 101) |+ Cluster Steve Lhomme matroska.org> writes: > > Please run mkvinfo to show what's in the file, not what software > interpret from it. > > On Wed, Aug 17, 2011 at 10:35 AM, Watcher on-track.ca> wrote: > > I have an anamorphic video that is playing in MPC-HC as 3:2. If I switch MPC-HC > > to use the internal matroska filter is plays at the correct 16:9 so I assume it > > must be Haali causing the problem. > > > > The info collected below from Haali seems to show that is does recognize it > > being anamorphic, but for some reason it is playing as 3:2. Note that the window > > does open to 16:9 initially for a fraction of a second before resizing to 3:2. > > > > > > Filter : Haali Media Splitter - CLSID : {55DA30FC-F16B-49FC- BAA5-AE59FC65F82D} > > > > - Connected to: > > > > CLSID: {04FE9017-F873-410E-871E-AB91661A4EF7} > > Filter: ffdshow Video Decoder > > Pin: In > > > > - Connection media type: > > > > Video: MPEG4 Video (H264) 720x480 (853:480) 23.98fps > > > > AM_MEDIA_TYPE: > > majortype: MEDIATYPE_Video {73646976-0000-0010-8000-00AA00389B71} > > subtype: Unknown GUID Name {31435641-0000-0010-8000-00AA00389B71} > > formattype: FORMAT_MPEG2_VIDEO {E06D80E3-DB46-11CF-B4D1-00805F6CBBEA} > > bFixedSizeSamples: 0 > > bTemporalCompression: 0 > > lSampleSize: 1 > > cbFormat: 169 > > > > VIDEOINFOHEADER: > > rcSource: (0,0)-(0,0) > > rcTarget: (0,0)-(0,0) > > dwBitRate: 0 > > dwBitErrorRate: 0 > > AvgTimePerFrame: 417083 > > > > VIDEOINFOHEADER2: > > dwInterlaceFlags: 0x00000000 > > dwCopyProtectFlags: 0x00000000 > > dwPictAspectRatioX: 853 > > dwPictAspectRatioY: 480 > > dwControlFlags: 0x00000000 > > dwReserved2: 0x00000000 > > > > MPEG2VIDEOINFO: > > dwStartTimeCode: 0 > > cbSequenceHeader: 37 > > dwProfile: 0x00000064 > > dwLevel: 0x0000001e > > dwFlags: 0x00000004 > > > > BITMAPINFOHEADER: > > biSize: 40 > > biWidth: 720 > > biHeight: 480 > > biPlanes: 1 > > biBitCount: 24 > > biCompression: avc1 > > biSizeImage: 0 > > biXPelsPerMeter: 720 > > biYPelsPerMeter: 853 > > biClrUsed: 0 > > biClrImportant: 0 > > > > pbFormat: > > 0000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ > > 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ > > 0020: 00 00 00 00 00 00 00 00 3b 5d 06 00 00 00 00 00 ........;]...... > > 0030: 00 00 00 00 00 00 00 00 55 03 00 00 e0 01 00 00 ........U...?... > > 0040: 00 00 00 00 00 00 00 00 28 00 00 00 d0 02 00 00 ........(...?... > > 0050: e0 01 00 00 01 00 18 00 61 76 63 31 00 00 00 00 ?.......avc1.... > > 0060: d0 02 00 00 55 03 00 00 00 00 00 00 00 00 00 00 ?...U........... > > 0070: 00 00 00 00 25 00 00 00 64 00 00 00 1e 00 00 00 ....%...d....... > > 0080: 04 00 00 00|00 1c 67 64 00 1e ac 34 e7 02 d0 f6 ......gd..?4?.?? > > 0090: ff c0 d5 40 b4 04 00 00 0f a4 00 02 ee 02 3c 58 ???@?....?..?. > 00a0: b6 78 00 05 68 ee b2 c8 b0 ? ? ? ? ? ? ? ? ? ? ??x..h???? > > > > - Enumerated media type 0: > > > > Set as the current media type > > > > > > > > _______________________________________________ > > 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 > From slhomme at matroska.org Sat Aug 20 10:15:08 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sat, 20 Aug 2011 10:15:08 +0200 Subject: [Matroska-devel] Anamorphic video plays as 3:2 In-Reply-To: References: Message-ID: The correct way to play this file is 853x480 pixels, ie 16:9 On Fri, Aug 19, 2011 at 3:12 AM, Watcher wrote: >> > > The info > > > + EBML head > |+ Doc type: matroska > |+ Doc type version: 1 > |+ Doc type read version: 1 > + Segment, size 240286424 > |+ Seek head (subentries will be skipped) > |+ EbmlVoid (size: 3996) > |+ Segment information > | + Timecode scale: 1000000 > | + Muxing application: libebml v0.7.7 + libmatroska v0.8.1 > | + Writing application: mkvmerge v2.2.0 ('Turn It On Again') > built on Mar ?4 2008 12:58:26 > | + Duration: 1431.263s (00:23:51.263) > | + Date: Sun Apr 26 15:02:05 2009 UTC > | + Segment UID: 0x85 0xa8 0x0a 0x4a 0x21 0x6e 0xea 0x6f > 0x85 0xe8 0x69 0x83 0x87 0x6d 0xf1 0x57 > |+ Segment tracks > | + A track > | ?+ Track number: 1 > | ?+ Track UID: 1131611014 > | ?+ Track type: video > | ?+ Enabled: 1 > | ?+ Default flag: 1 > | ?+ Forced flag: 0 > | ?+ Lacing flag: 0 > | ?+ MinCache: 1 > | ?+ Timecode scale: 1 > | ?+ Max BlockAddition ID: 0 > | ?+ Codec ID: V_MPEG4/ISO/AVC > | ?+ Codec decode all: 1 > | ?+ CodecPrivate, length 39 (h.264 profile: High @L3.0) > | ?+ Default duration: 41.708ms (23.976 fps for a video track) > | ?+ Language: und > | ?+ Video track > | ? + Pixel width: 720 > | ? + Pixel height: 480 > | ? + Interlaced: 0 > | ? + Display width: 853 > | ? + Display height: 480 > | + A track > | ?+ Track number: 2 > | ?+ Track UID: 792881594 > | ?+ Track type: audio > | ?+ Enabled: 1 > | ?+ Default flag: 1 > | ?+ Forced flag: 0 > | ?+ Lacing flag: 1 > | ?+ MinCache: 0 > | ?+ Timecode scale: 1 > | ?+ Max BlockAddition ID: 0 > | ?+ Codec ID: A_AAC > | ?+ Codec decode all: 1 > | ?+ CodecPrivate, length 2 > | ?+ Default duration: 21.333ms (46.875 fps for a video track) > | ?+ Language: und > | ?+ Audio track > | ? + Sampling frequency: 48000 > | ? + Channels: 2 > | + A track > | ?+ Track number: 3 > | ?+ Track UID: 3621949353 > | ?+ Track type: subtitles > | ?+ Enabled: 1 > | ?+ Default flag: 1 > | ?+ Forced flag: 0 > | ?+ Lacing flag: 0 > | ?+ MinCache: 0 > | ?+ Timecode scale: 1 > | ?+ Max BlockAddition ID: 0 > | ?+ Codec ID: S_TEXT/ASS > | ?+ Codec decode all: 1 > | ?+ CodecPrivate, length 1080 > | ?+ Language: und > |+ EbmlVoid (size: 1024) > |+ Attachments > | + Attached > | ?+ File name: gisha.ttf > | ?+ Mime type: application/x-truetype-font > | ?+ File data, size: 72932 > | ?+ File UID: 174024383 > |+ Chapters > | + EditionEntry > | ?+ EditionFlagHidden: 0 > | ?+ EditionFlagDefault: 0 > | ?+ EditionUID: 3751638146 > | ?+ ChapterAtom > | ? + ChapterUID: 4180662449 > | ? + ChapterTimeStart: 00:00:00.000000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: On-Spot Filming (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3501511344 > | ? + ChapterTimeStart: 00:00:35.577000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Introduction (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3171144100 > | ? + ChapterTimeStart: 00:02:35.489000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Weight-Training Start (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3892135326 > | ? + ChapterTimeStart: 00:03:06.019000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3105298855 > | ? + ChapterTimeStart: 00:03:48.770000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3720898717 > | ? + ChapterTimeStart: 00:04:23.346000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: After Weight-Training (First Time) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 44885934 > | ? + ChapterTimeStart: 00:05:35.835000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Ending Scene 1 > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1141046461 > | ? + ChapterTimeStart: 00:06:35.937000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Introduction (Came Back Again) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3676670123 > | ? + ChapterTimeStart: 00:07:00.670000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups (Came Back Again) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2392883601 > | ? + ChapterTimeStart: 00:07:22.317000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups (Came Back Again) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 141537983 > | ? + ChapterTimeStart: 00:07:44.422000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats (Came Back Again) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 560446601 > | ? + ChapterTimeStart: 00:08:04.275000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: After Training (Came Back Again) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2522595982 > | ? + ChapterTimeStart: 00:08:43.440000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Ending Scene 2 > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3695657117 > | ? + ChapterTimeStart: 00:09:43.541000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Hungry at Night (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3471934614 > | ? + ChapterTimeStart: 00:09:56.763000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Camisole 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2804572548 > | ? + ChapterTimeStart: 00:10:18.451000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Camisole 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 374831790 > | ? + ChapterTimeStart: 00:10:58.157000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Lingerie 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2843673473 > | ? + ChapterTimeStart: 00:11:19.846000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Gym Uniform 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 128758458 > | ? + ChapterTimeStart: 00:11:41.534000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Eurobeat 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3500554657 > | ? + ChapterTimeStart: 00:12:03.222000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Eurobeat 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 4114661813 > | ? + ChapterTimeStart: 00:12:42.929000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Special A (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1058786218 > | ? + ChapterTimeStart: 00:13:04.617000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Push-ups Special B (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1715744906 > | ? + ChapterTimeStart: 00:13:26.305000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Camisole 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1245569192 > | ? + ChapterTimeStart: 00:13:47.994000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Camisole 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1906346140 > | ? + ChapterTimeStart: 00:14:27.700000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Lingerie 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 535115189 > | ? + ChapterTimeStart: 00:14:49.388000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Gym Uniform 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1536549038 > | ? + ChapterTimeStart: 00:15:11.077000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Sucking-in-Stomach 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 54320533 > | ? + ChapterTimeStart: 00:15:32.765000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Sucking-in-Stomach 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2526299018 > | ? + ChapterTimeStart: 00:16:12.471000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Special A (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 849328826 > | ? + ChapterTimeStart: 00:16:34.160000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Sit-ups Special B (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3728166819 > | ? + ChapterTimeStart: 00:16:55.848000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Camisole 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2463731891 > | ? + ChapterTimeStart: 00:17:17.536000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Camisole 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1908471433 > | ? + ChapterTimeStart: 00:17:57.243000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Lingerie 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2431692183 > | ? + ChapterTimeStart: 00:18:18.931000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Gym Uniform 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3797758855 > | ? + ChapterTimeStart: 00:18:40.620000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Breathing 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2899192715 > | ? + ChapterTimeStart: 00:19:02.308000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Breathing 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 804111237 > | ? + ChapterTimeStart: 00:19:42.014000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Special A (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 4090058640 > | ? + ChapterTimeStart: 00:20:03.702000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Squats Special B (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1835093403 > | ? + ChapterTimeStart: 00:20:25.391000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Bed 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 2869796226 > | ? + ChapterTimeStart: 00:20:47.079000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Bounce 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1583836337 > | ? + ChapterTimeStart: 00:21:08.767000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Bounce 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 925790369 > | ? + ChapterTimeStart: 00:21:48.474000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Boobs 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 4273610625 > | ? + ChapterTimeStart: 00:22:10.162000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Boobs 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 1478247040 > | ? + ChapterTimeStart: 00:22:49.868000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Staring 12 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > | ?+ ChapterAtom > | ? + ChapterUID: 3949401006 > | ? + ChapterTimeStart: 00:23:11.557000000 > | ? + ChapterFlagHidden: 0 > | ? + ChapterFlagEnabled: 1 > | ? + ChapterDisplay > | ? ?+ ChapterString: Count Staring 24 Reps (Bonus) > | ? ?+ ChapterLanguage: eng > |+ EbmlVoid (size: 101) > |+ Cluster > > > Steve Lhomme matroska.org> writes: > >> >> Please run mkvinfo to show what's in the file, not what software >> interpret from it. >> >> On Wed, Aug 17, 2011 at 10:35 AM, Watcher on-track.ca> wrote: > >> > I have an anamorphic video that is playing in MPC-HC as 3:2. If I switch > ?MPC-HC >> > to use the internal matroska filter is plays at the correct 16:9 so I > assume it >> > must be Haali causing the problem. >> > >> > The info collected below from Haali seems to show that is does recognize > ?it >> > being anamorphic, but for some reason it is playing as 3:2. Note that the > window >> > does open to 16:9 initially for a fraction of a second before resizing to > 3:2. >> > >> > >> > Filter : Haali Media Splitter - CLSID : {55DA30FC-F16B-49FC- > BAA5-AE59FC65F82D} >> > >> > - Connected to: >> > >> > CLSID: {04FE9017-F873-410E-871E-AB91661A4EF7} >> > Filter: ffdshow Video Decoder >> > Pin: In >> > >> > - Connection media type: >> > >> > Video: MPEG4 Video (H264) 720x480 (853:480) 23.98fps >> > >> > AM_MEDIA_TYPE: >> > majortype: MEDIATYPE_Video {73646976-0000-0010-8000-00AA00389B71} >> > subtype: Unknown GUID Name {31435641-0000-0010-8000-00AA00389B71} >> > formattype: FORMAT_MPEG2_VIDEO {E06D80E3-DB46-11CF-B4D1-00805F6CBBEA} >> > bFixedSizeSamples: 0 >> > bTemporalCompression: 0 >> > lSampleSize: 1 >> > cbFormat: 169 >> > >> > VIDEOINFOHEADER: >> > rcSource: (0,0)-(0,0) >> > rcTarget: (0,0)-(0,0) >> > dwBitRate: 0 >> > dwBitErrorRate: 0 >> > AvgTimePerFrame: 417083 >> > >> > VIDEOINFOHEADER2: >> > dwInterlaceFlags: 0x00000000 >> > dwCopyProtectFlags: 0x00000000 >> > dwPictAspectRatioX: 853 >> > dwPictAspectRatioY: 480 >> > dwControlFlags: 0x00000000 >> > dwReserved2: 0x00000000 >> > >> > MPEG2VIDEOINFO: >> > dwStartTimeCode: 0 >> > cbSequenceHeader: 37 >> > dwProfile: 0x00000064 >> > dwLevel: 0x0000001e >> > dwFlags: 0x00000004 >> > >> > BITMAPINFOHEADER: >> > biSize: 40 >> > biWidth: 720 >> > biHeight: 480 >> > biPlanes: 1 >> > biBitCount: 24 >> > biCompression: avc1 >> > biSizeImage: 0 >> > biXPelsPerMeter: 720 >> > biYPelsPerMeter: 853 >> > biClrUsed: 0 >> > biClrImportant: 0 >> > >> > pbFormat: >> > 0000: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ >> > 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ >> > 0020: 00 00 00 00 00 00 00 00 3b 5d 06 00 00 00 00 00 ........;]...... >> > 0030: 00 00 00 00 00 00 00 00 55 03 00 00 e0 01 00 00 ........U...?... >> > 0040: 00 00 00 00 00 00 00 00 28 00 00 00 d0 02 00 00 ........(...?... >> > 0050: e0 01 00 00 01 00 18 00 61 76 63 31 00 00 00 00 ?.......avc1.... >> > 0060: d0 02 00 00 55 03 00 00 00 00 00 00 00 00 00 00 ?...U........... >> > 0070: 00 00 00 00 25 00 00 00 64 00 00 00 1e 00 00 00 ....%...d....... >> > 0080: 04 00 00 00|00 1c 67 64 00 1e ac 34 e7 02 d0 f6 ......gd..?4?.?? >> > 0090: ff c0 d5 40 b4 04 00 00 0f a4 00 02 ee 02 3c 58 ???@?....?..?.> > 00a0: b6 78 00 05 68 ee b2 c8 b0 ? ? ? ? ? ? ? ? ? ? ??x..h???? >> > >> > - Enumerated media type 0: >> > >> > Set as the current media type >> > >> > >> > >> > _______________________________________________ >> > 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 >> > > > > > _______________________________________________ > 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 Sat Aug 20 10:20:54 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Sat, 20 Aug 2011 10:20:54 +0200 Subject: [Matroska-devel] mkvalidator cluster/cues validation In-Reply-To: References: <91E3D9088FB44497852ABEB323D49E0C@AMDX2PC1> Message-ID: OK. If that's files you encode, you may try to avoid too many frames between keyframes, otherwise the seeking will be bad anyway. You never know if in the file's lifetime you're going to need to seek in it (if not you, tools may). As for mkvalidator you can always use it with the --no-warn command line option. On Wed, Aug 17, 2011 at 7:48 PM, msj wrote: > Yes, I tried that and ?ran into the problem of not being able to play all > mkv files perfectly. > > Investigated the matter and found that by reducing the cluster-size to a > maximum of 512k-1Mb, the problem completely disappeared - ?as far as I > remember the critical cluster size was around 1.2-1.5MB/cluster. > > Should be said that my own PC only has a AMD athlon 64X2 / 4200+ and a > "slow" green-WD HD. > > Regarding the VLC player , maybe my conclusion is wrong but using the > "process explorer" and looking at the ?I/O bytes history it seems that > access to the file happens cluster-wise. With cluster size 1.5Mb , the I/O > history repeatedly shifts betwen zero and 1.5Mb, with 1 Mb cluster size - > between 0 and 1Mb. With cluster sizes limited by time (2 seconds) , a much > more contineous "I/O bytes history" appeared. > > Anyway , compared my output with some mkv files generated by mkvmerge ?- > observed the same mkvalidator warnings - clusters seemed to be limited by > size / time, ?not necessarily aligned on video key frame boundaries. One of > the mkvmerge files I generated myself ?using latest mkvmerge with default > command line options. > > mkvclean I have not yet tried. > > /MSJ > > > > "Steve Lhomme" wrote in message > news:CAOXsMFJuWk3=83RRVQeqgQtYEJtHhaE4UAhYMSCNyZdNPyBgrA at mail.gmail.com... > Have you tried the large Cluster approach ? That's what mkclean does > with --remux regardless of the Cluster and it works fine. I don't > think there are any player that loads a whole Cluster in memory > (although that's one of the original goal). > > Steve > > On Tue, Aug 16, 2011 at 6:22 PM, ? wrote: >> Hi Steve >> >> Thanks for the reply. >> >> Just to explain: >> >> Could easily change my MKV muxer so the warnings disappears - aligning the >> clusters on video key-frame boundaries. However for highdef video files >> this >> is likely to cause an even more serious problem than >> say slow seeking - namely that playing the file does not work properly. If >> the cluster size gets too big, players like VLC most likely ends up >> flushing >> its buffers periodically and playback suffers. >> >> So the recommended way must be to keep the clusters at a reasonable size >> say >> 512kb .. 1.5Mb and not necessarily align the clusters on video >> key-boundaries. >> >> The matroska format seems to be prepared for this approach via the >> CueBlockNumber so the mkvalidator warning, still makes little sense to >> me... >> >> Using the CueBlockNumber a player could easily skip the specified number >> of >> blocks in order to find the "keyframe block" - and yes, its probably just >> as >> easy without the CueBlockNumber information :-) >> >> /MSJ >> >> >> >> ----- Original Message ----- From: "Steve Lhomme" >> Newsgroups: gmane.comp.multimedia.matroska.devel >> To: "Discussion about the current and future development of Matroska" >> >> Sent: Sunday, August 14, 2011 4:13 PM >> Subject: Re: mkvalidator cluster/cues validation >> >> >>> It is a warning because it's not optimal for seeking. A lot of data >>> will be read for nothing in this case, unless the Cluster is not >>> referenced in the Cues and if the Cues are not damaged. >>> >>> I don't think there are much players that make use of the >>> CueBlockNumber element at all. >>> >>> Steve >>> >>> On Wed, Aug 3, 2011 at 9:20 AM, wrote: >>>> >>>> mkvalidator complains about "first block for video track # not being a >>>> key-frame". Its only a warning but why complain about >>>> something thats totally valid - in this case the CueBlockNumber points >>>> at >>>> the key-frame block. I could understand the warning if the >>>> CueBlockNumber element had not been present or was pointing at the wrong >>>> block. >>>> >>>> what seems to be missing from mkvalidator is a "cues key-validation" - >>>> if >>>> the first block is not a video key-frame and CueBlockNumber is not >>>> present it should generate a warning. A warning because there does not >>>> seem >>>> to be any requirement that cues should only contain references >>>> to key-frames. Also, mkvalidator seems to ignore the CueBlockNumber - >>>> writing a wrong block number does not generate any error. >>>> >>>> please comment. >>>> >>>> Thanks in advance >>>> >>>> /MSJ >>>> >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> 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 >>> _______________________________________________ >>> 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 > _______________________________________________ > 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 bastik.public.mailinglist at gmx.de Sat Aug 20 11:44:08 2011 From: bastik.public.mailinglist at gmx.de (Sebastian G. ) Date: Sat, 20 Aug 2011 11:44:08 +0200 Subject: [Matroska-devel] Anamorphic video plays as 3:2 In-Reply-To: References: Message-ID: <4E4F81E8.9060907@gmx.de> Am 17.08.2011 10:35, schrieb Watcher: > I have an anamorphic video that is playing in MPC-HC as 3:2. If I switch MPC-HC > to use the internal matroska filter is plays at the correct 16:9 so I assume it > must be Haali causing the problem. Would it be possible to provide a small sample? I use Haali's Media Splitter too. I'd like to test if that happens with other players too. Please use some hosting service for the sample like mediafire or similar. bastik 20 Aug 2011, 11:44 (+0200) .. Impurities make things work and sometimes unique. Matroska - Your free and open container format. From bastik.public.mailinglist at gmx.de Sun Aug 21 13:21:12 2011 From: bastik.public.mailinglist at gmx.de (Sebastian G. ) Date: Sun, 21 Aug 2011 13:21:12 +0200 Subject: [Matroska-devel] LICENSE as official tag? In-Reply-To: References: <4D9718B8.5060101@gmx.de> Message-ID: <4E50EA28.9060304@gmx.de> Some time has passed and nothing against it came up. Is there a process where new official tags will be approved and maybe announced or does it happen silently? Just in case it gets accepted. What I hope of course. Regards, bastik 21 Aug 2011, 13:20 (+0200)(intentionally unsigned) > Am 04.04.2011 22:08, schrieb Steve Lhomme: > I agree on this. Anyone has objections/comments ? > >> On Sat, Apr 2, 2011 at 2:38 PM, Sebastian G. >> wrote: >> Hello, >> >> I'd like to suggest "LICENSE" to be official an official tag. >> (...) From bunk at iat.uni-leipzig.de Wed Aug 31 10:33:24 2011 From: bunk at iat.uni-leipzig.de (Michael Bunk) Date: Wed, 31 Aug 2011 10:33:24 +0200 Subject: [Matroska-devel] Haali Media Splitter: MP4 Demux: 'twos' audio track not recognized Message-ID: Dear HMS developer(s), we have a camcorder producing video files in an mp4 container, using the mpeg2 codec for video and "twos" FOURCC uncompressed audio. HMS (current version, 03/03/2011) recognizes the video stream properly, but not the audio stream. A sample video is here (100 MB): https://www.iat.uni-leipzig.de/datenbanken/iks/bunk/671_0036_01.mpeg2.MP4 I'd be happy if this can be fixed and will be available for further details. I'd try to provide a patch, but I'm not sure whether the mp4 splitter code is included in the "Core parser library" mentioned at http://haali.su/mkv/ . Best regards, Michael Bunk From slhomme at matroska.org Wed Aug 31 21:11:07 2011 From: slhomme at matroska.org (Steve Lhomme) Date: Wed, 31 Aug 2011 21:11:07 +0200 Subject: [Matroska-devel] MATROSKA ELEMENT : ChapterSegmentEditionUID is why binary type.? In-Reply-To: References: Message-ID: You are right, that should be changed. Luckily I think it's safe to assume noone ever used this (segment linking + chapter editions) for now. Any objection ? On Mon, Aug 29, 2011 at 3:32 PM, jigar patel wrote: > hello matroska team, > > > As per matroska spec > > ChapterSegmentEditionUID 4+ [6E][BC] - - >> 0 - binary The edition to play > from the segment linked in ChapterSegmentUID. > *Every edition id is u-integer type *then why ChapterSegmentEditionUID is > type of binary ? -- Steve Lhomme Matroska association Chairman -------------- next part -------------- An HTML attachment was scrubbed... URL: