VideoHelp Forum
+ Reply to Thread
Results 1 to 12 of 12
Thread
  1. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    FOR /F "delims=*" %%A IN ('dir /b *.MP4') DO "C:\Program Files\MKVToolNix\mkvmerge.exe" --ui-language es --output --language 2:eng --compression -1:none "%%A"
    PAUSE
    Im trying to remove the audio but with language
    Any idea how to do it?
    Last edited by cine24h; 22nd Jul 2019 at 21:53.
    Quote Quote  
  2. Your post is difficult to understand.

    To keep only English audio:
    Code:
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --audio-tracks eng "%%~a"
    To remove English audio add an exclamation mark:
    Code:
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --audio-tracks !eng "%%~a"
    Quote Quote  
  3. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    Thanks it's working now
    Last edited by cine24h; 23rd Jul 2019 at 11:23.
    Quote Quote  
  4. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    Originally Posted by sneaker View Post
    Your post is difficult to understand.

    To keep only English audio:
    Code:
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --audio-tracks eng "%%~a"
    To remove English audio add an exclamation mark:
    Code:
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --audio-tracks !eng "%%~a"


    Is there any possibility to remove track name or replace.
    Quote Quote  
  5. mkvmerge (remux): --track-name <tid>:<name>
    https://mkvtoolnix.download/doc/mkvmerge.html

    or:
    mkvpropedit (in-place): --edit track:<selector> --set name=<name>
    https://mkvtoolnix.download/doc/mkvpropedit.html
    Quote Quote  
  6. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    Image
    [Attachment 49626 - Click to enlarge]

    How can I remove this? I'm trying but it doesn't come out ... delete it or to change it to another name.

    --no-track-tags
    --no-chapters
    --no-attachments
    --no-global-tags
    Quote Quote  
  7. Because the track name is not a tag, chapter or attachment.

    I literally told you what option to use in my last post.
    Quote Quote  
  8. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    Im doing like this
    for %%a in (*.mp4) DO "E:\HDNLUF506\MKVToolNix\mkvmerge.exe" -o "v2\%%~a" mkvmerge (remux): --track-name <tid>:<name> "%%~a"
    What is my mistake? I'm new
    Quote Quote  
  9. <tid> and <name> are placeholders I used. For <tid> you enter the Track ID of the track you want to edit the name of. For <name> you enter the name you want. If you want to remove the name just leave it empty. So for example if you want to remove the name of the track with Track ID 1 you can use:
    Code:
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --track-name 1: "%%~a"
    Or much faster and in-place (make backups prior) with mkvpropedit:
    Code:
    for %%a in (*.mkv) do mkvpropedit "%%~a" --edit track:a1 --delete name
    (Note that track numbers are different between mkvpropedit and mkvmerge TrackIDs. https://mkvtoolnix.download/doc/mkvpropedit.html#mkvpropedit.edit_selectors )
    Quote Quote  
  10. Member
    Join Date
    Jul 2019
    Location
    WAKANDA
    Search Comp PM
    for %%a in (*.mkv) do mkvmerge -o "output\%%~a" --track-name 0: --track-name 1: --track-name 2: "%%~a"
    Thank you, it helped me a lot. You are a genius.
    Image
    [Attachment 49633 - Click to enlarge]
    one more thing, How i remove the file title from output?
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!