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

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

 

Go Back   Doom9's Forum > Capturing and Editing Video > New and alternative a/v containers

Closed Thread
 
Thread Tools Search this Thread Display Modes
Old 21st November 2008, 15:14   #661  |  Link
Emp3r0r
Registered User
 
Emp3r0r's Avatar
 
Join Date: Oct 2001
Location: Alabama, USA
Posts: 769
Quote:
Originally Posted by 73ChargerFan View Post
I'd like to request that mkvmerge GUI process WM_PAINT messages more frequently while muxing is happening
ditto on Vista x64
__________________
ChapterGrabber - add names to your chapters | AtomSite - open source AtomPub server
Emp3r0r is offline  
Old 24th November 2008, 18:52   #662  |  Link
boissy
dreamer
 
boissy's Avatar
 
Join Date: Sep 2008
Posts: 33
TRUE-HD and mkvmerge

Hello to all actives Users and Friends,
I just demux with TsMuxer a video file (H264 Codec) and an audio file (TRUE-HD Codec).
I wanted to select the audio file in the language I want to merge it with the video file using mkvmerge.
The mkvmerge opened my video file with .264 extention.
It could'nt open the audio file with .ac3 extention



NjB
boissy is offline  
Old 25th November 2008, 15:47   #663  |  Link
TheFluff
Excessively jovial fellow
 
Join Date: Jun 2004
Location: rude
Posts: 1,100
dolby truehd is not (yet?) supported in matroska, at least not by any known muxers. transcode to another lossless codec (flac comes to mind, it compresses better than truehd anyway) or extract only the ac3 part.
TheFluff is offline  
Old 25th November 2008, 17:44   #664  |  Link
boissy
dreamer
 
boissy's Avatar
 
Join Date: Sep 2008
Posts: 33
Transcode Audio

Quote:
Originally Posted by TheFluff View Post
dolby truehd is not (yet?) supported in matroska, at least not by any known muxers. transcode to another lossless codec (flac comes to mind, it compresses better than truehd anyway) or extract only the ac3 part.
There's no ac3 part in the language I want.
Onlytruehd.
I'm affraid I'm obliged to transcode to another codec.
I nedd to know wich program can help me do this . :-)
The Eac3to and More GUI ask me command lines, and it's complicated.



NjB
boissy is offline  
Old 27th November 2008, 07:30   #665  |  Link
73ChargerFan
Registered User
 
73ChargerFan's Avatar
 
Join Date: Dec 2006
Posts: 523
Feature Request

"Always Save Log Files" option, to the working directory

Throw an error if the streams are of different lengths (e.g. one video, one or two audio streams). I accidentally muxed a 6 minute audio stream into a 5 minute video.
73ChargerFan is offline  
Old 27th November 2008, 09:58   #666  |  Link
KoD
Registered User
 
Join Date: Mar 2006
Posts: 567
Quote:
Originally Posted by 73ChargerFan View Post
"Always Save Log Files" option, to the working directory

Throw an error if the streams are of different lengths (e.g. one video, one or two audio streams). I accidentally muxed a 6 minute audio stream into a 5 minute video.
That's not an error. It's just that you were not paying attention to what you were doing and the result surprised you.
KoD is offline  
Old 27th November 2008, 19:39   #667  |  Link
madshi
Registered Developer
 
Join Date: Sep 2006
Posts: 9,140
@Mosu,

what does mkvtoolnix do with WAV files that are bigger than 2GB (or 4GB)? Does it support them? You know, the WAV header is limited to 2GB/4GB. Could you please:

(1) Either ignore the size information in the header, if the WAV file is bigger than 2GB/4GB?
(2) Or add support for wav64 or rf64 files?

In any case there should be some "official" way to feed mkvtoolnix with a >4GB WAV/PCM file.

Thanks!

Edit: Just noticed that mkvtoolnix does in fact support >4GB WAV files. So all is fine!

Last edited by madshi; 27th November 2008 at 22:30.
madshi is offline  
Old 28th November 2008, 14:18   #668  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
Quote:
Originally Posted by 73ChargerFan View Post
I'd like to request that mkvmerge GUI process WM_PAINT messages more frequently while muxing is happening (or what ever is blocking them?)
This build should work better for you: http://www.bunkus.org/videotools/mkv...0081128-31.rar
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 28th November 2008, 14:31   #669  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
Quote:
Originally Posted by 73ChargerFan View Post
Throw an error if the streams are of different lengths (e.g. one video, one or two audio streams). I accidentally muxed a 6 minute audio stream into a 5 minute video.
Usage error, I will certainly not check for things like this.
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 3rd December 2008, 10:04   #670  |  Link
KoD
Registered User
 
Join Date: Mar 2006
Posts: 567
I've noticed that mkvmerge doesn't see LPCM audio streams inside DVD VOBs. If seeing and muxing such VOB files could be implemented. it would be great. They're basicly PCM audio. Here is a 18MB MPEG2 video + LPCM audio sample cut from a DVD vob (it's a cell from a vob):
Code:
http://www.mediafire.com/?ikvzichmjzm
KoD is offline  
Old 3rd December 2008, 11:42   #671  |  Link
madshi
Registered Developer
 
Join Date: Sep 2006
Posts: 9,140
Quote:
Originally Posted by KoD View Post
I've noticed that mkvmerge doesn't see LPCM audio streams inside DVD VOBs.
@Mosu,

LPCM streams in VOB files are marked with "stream_index & 0xf0 == 0xa0". Each PES LPCM data block has a 3 byte header. Here's how to read the header:

Code:
channels = buf[1] & 0x7 + 1;
bitdepth = (buf[1] & 0xc0) >> 6;  // 0=16bit; 1=20bit; 2=24bit
samplerate = (buf[1] & 0x30) >> 4;  // 0=48k; 1=96k; 2=192k
The actual LPCM data for 16bit tracks is stored as expected (in big endian). However, 20bit/24bit is stored rather strangely. Unfortunately I don't have any samples for 20bit and 24bit...

Please note that the header is different for EVO files!
madshi is offline  
Old 4th December 2008, 16:57   #672  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
LPCM is not supported at all at the moment. So I don't know when/if I'll find the time to implement support for it.
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 5th December 2008, 14:51   #673  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
mkvtoolnix 2.4.1 released

Hey,

time for the next release of mkvtoolnix, 2.4.1. There's only one new feature: support for SRT/SSA tracks in AVI files. One important bug has been fixed regarding the handling of timecodes during appending which should fix A/V sync issues with appended tracks for most people. A couple of smaller bugs have been fixed as well (see below for details).

Here are the usual links...

...to the home page:
http://www.bunkus.org/videotools/mkvtoolnix/

...to the source code:
http://www.bunkus.org/videotools/mkv...-2.4.1.tar.bz2

...to the Windows installer:
http://www.bunkus.org/videotools/mkv....4.1-setup.exe

The Linux binaries that I provide myself (Debian, Ubuntu, OpenSuSE and Fedora Core) have already been uploaded and are available from the home page.

Starting with this release I provide pre-built packages for Fedora Core 10 (i386 and x86_64 architectures).

Here's the full ChangeLog since release 2.4.0:

------------------------------------------------------------
2008-12-04 Moritz Bunkus <moritz@bunkus.org>
* Released v2.4.1.
* Build system: bug fix: Configure does not use "uname -m" for the detection of the Boost libraries anymore but configure's "$target" environment variable. This fixes the Boost detection for cross compilation builds. Fix for bug 311. Patch by Dominik Mierzejewski (see AUTHORS).

2008-12-03 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: PCM audio tracks bigger than approximately 8 GB were cut off after approximately 8 GB.

2008-12-02 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: mkvmerge recognizes SRT subtitle files with timecodes that contain spaces between the colons and the digits and timecodes whose numbers are not exactly two or three digits long.

2008-11-28 Moritz Bunkus <moritz@bunkus.org>
* mmg: bug fix: mmg processes window events much more often during muxing.
* all: Updated the language code list from the offical ISO 639-2 standard.

2008-11-04 Moritz Bunkus <moritz@bunkus.org>
* mmg: bug fix: Split timecodes with more than three decimals were not allowed even though the docs say that they are. They are now, as mkvmerge supports such timecodes.

2008-11-03 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: Changed the way mkvmerge calculates the timecodes when appending files. Should result in better audio/video synchronization.
* mkvmerge: new feature: Added support for reading SRT and SSA/ASS subtitles from AVI files (fix for bug 64).

2008-11-01 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: mkvmerge's LZO compressor would segfault if mkvmerge was compiled against v2 of the LZO library and the v1 LZO headers were not present.

2008-10-29 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: bug fix: SRT subtitle files are also handled correctly if the timecode lines do not have spaces around the arrow between the start and end timecodes.

2008-10-13 Moritz Bunkus <moritz@bunkus.org>
* mkvextract: bug fix: Matroska elements with binary data were output as garbage in XML files.
------------------------------------------------------------

Have fun

Regards,
Mosu
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 5th December 2008, 15:02   #674  |  Link
spida_singh
Registered User
 
Join Date: Aug 2002
Posts: 125
Thanks for the update, just installed latest version. When running mkvmerge, i get an error stating mmg.exe has stopped working (Vista 32), had to revert back to 2.4.0, anyone else experiencing the same?

Last edited by spida_singh; 5th December 2008 at 16:30.
spida_singh is offline  
Old 5th December 2008, 16:06   #675  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
All: The installer for v2.4.1 didn't include two DLLs (libebml.dll and libmatroska.dll). I've uploaded a new installer build to the same location: http://www.bunkus.org/videotools/mkv....4.1-setup.exe (size 4093126 bytes). I advise to re-download the installer and re-install mkvtoolnix with it.

spida_singh: As I said please download the new installer build. If it doesn't fix the problem for you then I'll have to investigate. Unfortunately I don't have a single Vista installation at home nor at work, so it might take me some time (because, as you may have guessed by now, I cannot reproduce those crashes on my XP nor on our 2003 Server at work).
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 5th December 2008, 16:29   #676  |  Link
spida_singh
Registered User
 
Join Date: Aug 2002
Posts: 125
All ok now! Thanks!
spida_singh is offline  
Old 5th December 2008, 18:23   #677  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
Great. Thanks for the feedback.
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 7th December 2008, 05:20   #678  |  Link
73ChargerFan
Registered User
 
73ChargerFan's Avatar
 
Join Date: Dec 2006
Posts: 523
Thanks, am testing. Ugggh, Kaspersky thinks the installation program is a trojan. This didn't happen with the earlier installs.
73ChargerFan is offline  
Old 7th December 2008, 10:57   #679  |  Link
Mosu
MKVToolNix author
 
Mosu's Avatar
 
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,278
Congratulations to Kaspersky -- yet another virus scanner with a false positive.
__________________
Latest MKVToolNix is v83.0

If I ever ask you to upload something, please use my file server.
Mosu is offline  
Old 7th December 2008, 12:18   #680  |  Link
madshi
Registered Developer
 
Join Date: Sep 2006
Posts: 9,140
It's getting common these days...
madshi is offline  
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

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

Forum Jump


All times are GMT +1. The time now is 12:21.


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