Now I don’t have to : right-click > english audio and right-click > french subtitle. It launches every video of the season ready to go. It was worth it, right?
Now it’s time to enjoy my day. Oh wait! (it’s 6 am here)

  • N0x0n@lemmy.ml
    link
    fedilink
    arrow-up
    39
    ·
    edit-2
    4 months ago

    You could have saved hours by just using mkvpropedit writing a simple 3 line bash script that loops through your files.

    Just saying 🤷🏼

    • WilliamsStark@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      That’s what I already did. And finding the good mkvpropedit command was long.
      But here I wanted to automate that and just having to choose the audio and subtitles languages and it executes the mkvpropedit command.

      • N0x0n@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        4 months ago

        Thanks for sharing your script :) I never thought you would need such a complex (not a programmer so it’s complex for me xD) script. This seems a full automation and looks great ! Well done, it was worth it !

        • WilliamsStark@sh.itjust.worksOP
          link
          fedilink
          arrow-up
          2
          ·
          4 months ago

          Thank you very much. It’s nice to hear it. I have to say that it’s very satisfaying to have a “complete” script with clean code and comments.

    • Blue_Morpho@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      4 months ago

      I’m not sure if it’s fixed now but a few years ago Plex ignored the properties and played the first audio stream it found. I had Scooby Doo with Portuguese as the first audio track and although mkvpropedit worked when playing back in VLC, in Plex it would still play Portuguese as default. I had to re merge the streams with English as the first track for Plex to play English by default.

      • N0x0n@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        4 months ago

        I’m thinking of 2 3 issues here.

        Either your file had the propertie flag --forced-display-flag for the audio track 1 and this would force the audio 1 to play even if you changed the flag-default with mkvpropedit. In that case you have no other choice to remux your file with mkvmerge and change the flag to --forced-display-flag 1:no (if it’s the audio track 1) I have no idea why someome would force an audio track…

        Or you didn’t used the --edit track:s1 flag with the flag-default propertie, which uses mkvmerge under the hood. Reading through my notes there is a superuser.com link talking specifically about that, and how it could fuck up your tracks order if you don’t use the track flag.

        Edit: This is only true if your player is capable to select the audio based on the flag default or forced. Otherwise you have to remux the file and change the order of tracks with the --track-order flag with mkvmerge. This could be the case for Plex, you can probably find that info in the plex documentation !

        Edit2: Plex seems to use both but I would suspect plex or bad flags being the culprit here rather than mkvtools.

  • Smallwater@lemmy.world
    link
    fedilink
    arrow-up
    19
    ·
    4 months ago

    Why waste 5 seconds every time to want to watch a video, when you can waste 10 hours writing a script to automate it?

    That’s just how we programmers roll

    • WilliamsStark@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      1
      ·
      4 months ago

      I think you’re talking about the licence and for the moment I didn’t have time to think about what licences I should use and primarly what are the licences existing.

      • umbrella@lemmy.ml
        link
        fedilink
        arrow-up
        7
        arrow-down
        1
        ·
        4 months ago

        you can massage LLM code into working faster than doing it from scratch if you do it right

    • WilliamsStark@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      I wanted to do it myself, learn and getting used to dev things again. AI are often wrong on some details but I used it sometimes and it can help a lot for parts of code or understanding some things.

  • devfuuu@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    4 months ago

    I think you can put a list of preferred languages in the conf file. At least most mpv guis allow setting that somewhere.

  • Pantherina@feddit.de
    link
    fedilink
    arrow-up
    3
    ·
    4 months ago

    Btw Celluloid is the best modern MPV GUI with all the goodies like portals. And it supports MPV configs which can solve many VLC issues in a single line, like click-to-play ! Never going back.

  • Andrew@mander.xyz
    cake
    link
    fedilink
    arrow-up
    2
    ·
    4 months ago

    I literally did the same thing once. But I did it under an hour, if not under 10 minutes, because there is no autocompletion for mpv in Lua.