From kurtnoise at free.fr Thu Sep 4 14:58:48 2008 From: kurtnoise at free.fr (Kurtnoise) Date: Thu, 04 Sep 2008 14:58:48 +0200 Subject: [Matroska-devel] [FR] update Haali Media Splitter to the correct objectTypeID for AC-3/E-AC-3/VC-1 in mp4... Message-ID: Hi, Now that we have the real registration [1] defining the correct values to store AC-3 and E-AC-3 streams in mp4/mov, could we have an update, Mike, to your splitter ? I mean, replace objectTypeID 0xD3 by 0xA5 and so on... ++ Kurtnoise [1] http://mp4ra.org/codecs.html From mustafa.rizvi at amdocs.com Tue Sep 2 11:23:49 2008 From: mustafa.rizvi at amdocs.com (Mustafa Rizvi) Date: Tue, 2 Sep 2008 14:53:49 +0530 Subject: [Matroska-devel] Slow seek rate Message-ID: Hi, I experience slow seek rates (and sometimes crashes) when I play .mkv files (on vlc player) on my laptop. However, the same files work smoothly on my desktop. The details of both my systems are Desktop : 1gb RAM, Windows XP Laptop : 3 gb RAM, Windows Vista. Is there any way I can view these files on my laptop without any lags and freezes? Maybe I can download some codecs or change my player? Please let me know. Thanks! Regards, Mustafa Rizvi AMDOCS > CUSTOMER EXPERIENCE SYSTEMS INNOVATION This message and the information contained herein is proprietary and confidential and subject to the Amdocs policy statement, you may review at http://www.amdocs.com/email_disclaimer.asp -------------- next part -------------- An HTML attachment was scrubbed... URL: From speedy_harry at hotmail.co.uk Sat Sep 6 18:05:25 2008 From: speedy_harry at hotmail.co.uk (speedy_harry at hotmail.co.uk) Date: Sat, 6 Sep 2008 17:05:25 +0100 Subject: [Matroska-devel] QT Message-ID: Hi there is there a way i could play mkv files on quicktime in windows. Also which is the best converter. to convert mkv to some other format for eg. avi mp4 etc any help appreciated. thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From crusada1 at gmail.com Sun Sep 14 06:04:38 2008 From: crusada1 at gmail.com (Mark) Date: Sun, 14 Sep 2008 16:04:38 +1200 Subject: [Matroska-devel] Posting access request. Message-ID: <48ceee110809132104t3ce07805w6735f7459273697b@mail.gmail.com> Hi, Can you grant me access to post at matroska-devel? crusada1 at gmail.com Regards, cruz -------------- next part -------------- An HTML attachment was scrubbed... URL: From balisongkris at yahoo.com Sat Sep 13 07:05:15 2008 From: balisongkris at yahoo.com (Chris Hochstatter) Date: Fri, 12 Sep 2008 22:05:15 -0700 (PDT) Subject: [Matroska-devel] possible Playstation 3 matroska codec? Message-ID: <699251.43414.qm@web55406.mail.re4.yahoo.com> I do not know just how much it would take, but is it possible for you to create a codec for matroska which would allow the playstation 3 to play .mkv files. If posible, then it would be greatly appreaciated (of course I will at least try to make contact with sony so that the codec can be included in the next update. I would much rather not hack my playstation 3. I do not wish to risk something that expensive). Thank you very much for reading this message, I wish you luck if you attempt it, and please wish me luck in maybe finding a way to include this codec in the an update when you finish it (if you plan on working on it. Its not like I can or would force you to do it). Sincerely, Christian Hochstatter -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.lhomme at free.fr Sat Sep 20 17:49:57 2008 From: steve.lhomme at free.fr (Steve Lhomme) Date: Sat, 20 Sep 2008 09:49:57 -0600 Subject: [Matroska-devel] [mosu] r3916 - in trunk/prog/video/mkvtoolnix/src: common output In-Reply-To: <200809201704.37467.moritz@bunkus.org> References: <20080920142738.02D62334189@corran.local.bunkus.org> <48D50CEC.6010509@free.fr> <200809201704.37467.moritz@bunkus.org> Message-ID: <48D51BA5.7030203@free.fr> Moritz Bunkus wrote: > Hey Steve, > > On Saturday 20 September 2008 16:47, Steve Lhomme wrote: > >> Can you update the Matroska website codec page with info about how VC1 >> is muxed in matroska ? > > I'll do that once muxing is complete; madshi is giving me a lot of help > on Doom9 at the moment how he and Haali implemented VC1 muxing. It's MS > compatibility mode though. Anyway, it works. > >> Also can you modify my email for your SVN commit notifications to >> slhomme at matroska.org ? > > Done. Thx >> Thx (and good job !) > > Thanks :) > >> PS: I've started rewriting libebml/libmatroska in C. read/write mostly >> works (no block yet). In the coming weeks I'll try to "port" >> mkvtoolnix to these libs, at least to verify they produce the same >> result. The API is similar to the old C++ lib. And I plan to make a >> C++ wrapper to mimic the old API (and another wrapper to mimic Haali's >> code). > > Sounds good. However, this will be a difficult job because all of > mkvtoolnix is heavily using libebml and libmatroska. But it should be > possible :) Well, that's why I'll make a C++ wrapper that should be 100% compatible with the v1 libraries. So on the mkvtoolnix the changes should be minimal, if any. That's to validate the new code. After that we can see how mkvtoolnix could benefit from using the lower C layer... While writing the code I also saw plenty of possibilities of optimizations, that will come later. The new lib is also BSD licensed to the Matroska Foundation. That should ease the adoption. (HW manufacturers are currently turning to Haali's splitter) One of the goals is to make it work in CorePlayer. Right now EBML it's used to store/restore a "database" of SSL certificates and it's working well. Later we plan to have a mkv muxer in there to do things like streaming (think UPNP, or DivX Connected). And maybe also for storing A/V files in a cache (like progressive downloads) of formats with no container (like RTSP streams). We may borrow some code for mkvtoolnix, maybe not. We already have all kinds of demuxers in the player (mostly the same as you plus ASF, FLV) so we probably won't need that part. Maybe packetizers... One of the benefit of the new lib is that it uses a small C layer called Core-C that adds portability and object oriented syntax to C. That's the foundation on which CorePlayer is built. And it runs on big/little endian, windows, CE, Linux, symbian, palm, OS X, iPhone, PS2. So maybe mkvtoolnix could make use of it and our build system (coremake) to be more portable. It also has a lot of built-in code that replaces a lot of your outside dependencies. http://coreforge.org/projects/corec/ http://coreforge.org/projects/coremake/ https://services.corecodec.com/svn/matroska/trunk/foundation_src/ Steve From rodrigo.madera at gmail.com Mon Sep 22 19:33:40 2008 From: rodrigo.madera at gmail.com (Rodrigo Madera) Date: Mon, 22 Sep 2008 15:33:40 -0200 Subject: [Matroska-devel] EBML DTD Editor Message-ID: <3cf983d0809221033j5dc5c589k6966598334931403@mail.gmail.com> Hello everybody, Just wanted to know what tool you guys use for EBML modelling, like a DTD Editor or alike. Thanks for any information, Rodrigo -------------- next part -------------- An HTML attachment was scrubbed... URL: