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. |
11th October 2017, 17:02 | #321 | Link |
MKVToolNix author
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,305
|
Great! And you're welcome.
I expect there to be bugs in the new mode. Writing a CLI parser isn't that hard, but changing an existing one to something else so that both modes work leads to quite a lot of corner cases. Bug reports are more than welcome!
__________________
Latest MKVToolNix is v88.0 If I ever ask you to upload something, please use my file server. |
27th October 2017, 09:47 | #322 | Link |
Registered User
Join Date: Mar 2017
Posts: 8
|
Add & Extract buttons
Hi,
It seems the "Add" and "Extract" buttons in the lower right corner both do the same (extract selected tracks). Shouldn't the "Add" button open the file dialog to add files? At this moment it's only possible to add files while right-clicking the "Input files" area and select 'Add input file(s)". Am i missing something or should this behavior be corrected? I'm using the latest version (2.1.0). |
27th October 2017, 12:44 | #323 | Link |
Registered User
Join Date: Jun 2013
Location: Germany
Posts: 44
|
Is it possible to set (force) the mkvtoolnix directory through command line? Something like "gMKVExtractGUI.exe --mkvtoolnix=/home/user/custom/bin". Right now it seems to default to "/usr/bin" even if I put another directory with the command line tools in front of my PATH.
|
27th October 2017, 15:57 | #324 | Link | ||
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
Quote:
Since dragging and dropping now supports folders and sub folders, I think that adding files manually is not so intuitive, though I left the option from the context menu. Quote:
|
||
8th January 2018, 16:08 | #325 | Link |
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
Happy new year everyone!
It's time for a new version (v2.2.0)! With this version, HighDPI environments are fully supported thanks to the feedback and vigorous testing from Six! Download link: https://sourceforge.net/projects/gmk....0.7z/download Changelog:
As always, enjoy people! |
13th January 2018, 00:10 | #326 | Link |
Registered User
Join Date: Mar 2011
Posts: 4,936
|
Thanks for the new version. Still working fine on XP!
A request regarding the new output directory behaviour..... Could gMKVExtractGUI always remember a specified (default) output directory independently of the "use source" option? Or to put it another way, could the "use source" checkbox simply toggle between a specified directory and the source directory? Currently it can work that way, as long as you check "use source" after adding input files and uncheck it again before removing input files, or before closing the GUI, and as long as you don't click on any input files while "use source" is checked. If you follow those rules, you can check "use source" and gMKVExtractGUI will extract to the source directory, then when you uncheck "use source" it goes back to using the "default" directory (the one you previously specified). Anyway... I think it'd be more fun if gMKVExtractGUI always remembered a specified (default) directory and the "use source" checkbox simply toggled between that directory and the source directory (without causing gMKVExtractGUI to forget the specified directory). Thanks again. |
29th January 2018, 12:12 | #330 | Link | ||
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
Quote:
Quote:
|
||
10th February 2018, 14:30 | #331 | Link |
Registered User
Join Date: Oct 2013
Posts: 218
|
I have a problem with this app from MKVToolnix: When I try to extract the PCM from the Matroska (which has these specs) : https://pastebin.com/Whz1QiTy The resulting PCM has only: 2h31m if I open using MPC-HC. But MediaINFO says something quite different: https://pastebin.com/z6kpZQ8J (correct info: over 14 hours) Then I tried opening this huge PCM in this program: http://download.cnet.com/TAudioConve...-75924909.html I told it to convert to MP3 160 Kbps, 48 kHz. The MP3 file now it's reduced to 173 MB. And if I open in MPC-HC it has 2h31m, too. MediaINFO says the following about this MP3: https://pastebin.com/AtHa6z76 (2h31m) Any thoughts? Clearly this is a bug only affecting huge PCM audio tracks with many hours.... P.S. VLC, WinAMP and PowerDVD also inform 2h31m for the PCM. In other words the audio track is stuck in that Matroska video, which has 95 GB. I need to get it out and convert it to MP3. |
10th February 2018, 14:51 | #332 | Link |
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
You should make this post in the MKVToolNix thread here:
https://forum.doom9.org/showthread.php?t=155732 This is the thread for the gMKVExtractGUI application, which only uses the mkvextract.exe as is from the MKVToolNix tools. You should also always use the latest versions of both MKVToolNix and gMKVExtractGUI, in case you stumbled on a bug that is already solved. |
10th February 2018, 14:52 | #333 | Link |
Registered User
Join Date: May 2016
Posts: 197
|
You can't put more than 4 GB of PCM data in a wav container (because the size field uses a 32 bit unsigned integer). This restriction can be overcome by using the w64 container. You can use ffmpeg to extract the audio data from the Matroska file to w64; or you can use ffmpeg to directly encode the audio to something else or to pipe to another encoder.
But there is something that is strange: Actually 2h31m at 1536 kb/s amounts to way less than 2 GB. How big is the file if you use ffmpeg for the extraction? [Edit]: Now I see! Your extracted file has the correct filesize, but an unsuitable container: It's size field in the header is only correct modulo 2^32, i.e. according to the header the size is only 1.63GB which gives the length that the players show to you. But this length is wrong. I already told you what you can do about it. Last edited by mkver; 10th February 2018 at 14:58. |
10th February 2018, 16:25 | #334 | Link |
MKVToolNix author
Join Date: Sep 2002
Location: Braunschweig, Germany
Posts: 4,305
|
mkvextract cannot write wave64 files at the moment. There's currently no way to extract such a track correctly with mkvextract.
__________________
Latest MKVToolNix is v88.0 If I ever ask you to upload something, please use my file server. |
10th February 2018, 17:03 | #335 | Link |
Registered User
Join Date: Oct 2013
Posts: 218
|
I tried using ffmpeg, and failed. Unless this is not the correct command: https://forum.doom9.org/showpost.php...postcount=5082 See more here: https://imgur.com/a/i5qY6 The W64 file has only 350 MB, and 1 hour later is still showing the same image. So no luck there. I tried ffmpeg - i E:\XX.mkv D:\file.w64 |
27th April 2018, 10:14 | #336 | Link |
Acid fr0g
Join Date: May 2002
Location: Italy
Posts: 2,823
|
@gpower2
May I ask you to - add bitrate for audio tracks, at least ac3 - give a minimal configuration for filename output: I don't care about track name at the beginning, I would prefer to add numer of channels in audio, for example
__________________
@turment on Telegram Last edited by tormento; 27th April 2018 at 10:24. |
6th June 2018, 11:58 | #338 | Link | ||
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
Quote:
I don't understand what you're asking when you say to "add bitrate for audio tracks", please clarify with an example. I could add a template string for output filename generation, but it's not as simple as it seems, so no promises! Quote:
I hope that's ok for you! As always, thanks for your valuable feedback! |
||
14th June 2018, 15:38 | #339 | Link |
Registered User
Join Date: Jun 2013
Location: Germany
Posts: 44
|
Since there doesn't seem to be a GUI for Linux available that doesn't require "special" runtimes like mono or python, I took the time and wrote something in C++ using FLTK (so the binary only needs standard X11 libraries).
https://github.com/darealshinji/mkvextract-gui I just wanted to let Linux users know about it. By the way, the program doesn't have a real name, "mkvextract-gui" is more of a description or project name. |
29th September 2018, 09:13 | #340 | Link |
gMKVExtractGUI author
Join Date: Aug 2003
Location: Greece / Thessaloniki
Posts: 252
|
Hi people! Long time no see!
It's time for a new version (v2.3.0)! With this version, the new mkvextract syntax introduced in MKVToolNix v17 is officially supported, just in time before the old one is deprecated! Download link: https://sourceforge.net/projects/gmk....0.7z/download Changelog:
As always, enjoy people! |
Tags |
extractor, gmkvextractgui, matroska, mkv, mkv extract, mkvextract, mkvextractgui |
Thread Tools | Search this Thread |
Display Modes | |
|
|