Hi you guys,
I've got a problem with JMkvpropedit 1.3.3.1
I've got a *mkv files with dimensions 720x576
And original ratio is 16/9 but is still showing in 5:4Code:Width : 720 pixels Height : 576 pixels Display aspect ratio : 5:4 Frame rate mode : Constant Frame rate : 25.000 FPS
I wanna add a extra parameters do JMkvpropedit for bach convert all
*mkv's
But what command seems to look??
mkvpropedit.exe --edit track:v1 --set display-width=16 --set display-height=9 --set display-unit=3 doesn't work![]()
+ Reply to Thread
Results 1 to 14 of 14
-
-
Are you trying to use the command-line or are you using JMkvpropedit? Because your command won't work either way.
If you are working on the command prompt you need to add a filename:
mkvpropedit.exe "FILE.MKV" --edit track:v1 --set display-width=16 --set display-height=9 --set display-unit=3
If you work in JMkvpropedit you need to add the parameters like this: -
Thanks dude
You're the best
I need one more thing
Need a command to Jmkpropedit for make chapters for each 5 minutes
It is possible to make with second line (first display ratio) chapters?
Tapped by SM-A310F -
Mkvpropedit does not have any feature to auto-generate chapters on intervals. You can create such a chapter file with a different program and add it in JMkvproedit, though (as chapter file). Or you use mkvmerge. But Mkvtoolnix GUI doesn't have any batch feature, you'd have to write one yourself, e.g.:
Code:for %%a in (*.mkv) do mkvmerge --generate-chapters interval:00:05:00 -o "output\%%a" --aspect-ratio 0:16/9 "%%a"
-
-
Yes, that's already what it does. It runs the command for all files that end in ".mkv".
-
sorry for noob question, but what does mean??
Code:for %%a in (*.mkv) "output\%%a" "%%a"
when I take every single the same wor as from
Code:for %%a in (*.mkv) do mkvmerge --generate-chapters interval:00:05:00 -o "output\%%a" --aspect-ratio 0:16/9 "%%a"
-
-
Do I need to use "%%a" or my file path?
I've got d:\1
in "1" I have 5 mkv files to whom want to add chapters every 5 minutes
what should by the bat command?? (for me copy+paste) -
There are several options. Two of them:
A.) Simply copy the .bat file to the directory you want to work in
B.) Add a new line:
Code:cd /d d:\1 for %%a in (*.mkv) do mkvmerge --generate-chapters interval:00:05:00 -o "output\%%a" --aspect-ratio 0:16/9 "%%a"
-
Its almost midnight here, I'm after work now, I need a rest. Tomorrow will check ok
Tapped by SM-A310F -
Ok, one more thing....
how should be command for JMKvpropedit for:
Code:--display-dimensions TID:widthxheight
Code:--set display=1:720x400
-
Why are you trying to invent new parameters? You can list all possible parameters using mkvpropedit -l
--set display-width=720 --set display-height=400 --set display-unit=0
(Commonly, you would always upscale instead of downscaling when choosing display pixel dimensions.) -
It's pure curiosity, I just exploring this software, how powerfull is it
Tapped by SM-A310F
Similar Threads
-
MKV Batch Metadata Removal Tool - JMkvPropedit??
By BJ12 in forum Newbie / General discussionsReplies: 18Last Post: 13th Apr 2021, 19:18 -
Help with RTMPDump parameters
By ParsonBrown in forum Video Streaming DownloadingReplies: 2Last Post: 14th Aug 2016, 17:42 -
How to do MeGUI parameters
By yaston in forum Newbie / General discussionsReplies: 19Last Post: 22nd Jan 2015, 09:27 -
Missing Parameters used by rtmpExplorer?
By Tzahi.Zohar in forum Video Streaming DownloadingReplies: 4Last Post: 5th Oct 2012, 13:06 -
What do you think of these H264 encoding parameters?
By DrDeceit in forum Video ConversionReplies: 6Last Post: 29th Sep 2012, 06:41