Git Product home page Git Product logo

Comments (8)

nils-werner avatar nils-werner commented on June 3, 2024 1

Then you're probably out of luck...

from stempeg.

faroit avatar faroit commented on June 3, 2024

Maybe let's try https://superuser.com/questions/834244/how-do-i-name-an-audio-track-with-ffmpeg

from stempeg.

faroit avatar faroit commented on June 3, 2024

Got this working for VLC using the handler_name tag. However still no luck for quicklook on OSX as it seems to only allow official iso languages...

Maybe bringing in @nils-werner, any idea?

from stempeg.

nils-werner avatar nils-werner commented on June 3, 2024

Have you tried

-metadata:s:a:1 title="Foo"

https://superuser.com/a/835069/204044

from stempeg.

faroit avatar faroit commented on June 3, 2024

Have you tried

-metadata:s:a:1 title="Foo"

yes, actually my last comment was not correct

i use title for VLC and handler_name for ffmpegs own metadata (when using ffprobe)

                        '-map',
                        "[a%d]" % idx,
                        # add title tag (e.g. displayed by VLC)
                        "-metadata:s:a:%d" % idx,
                        "title=%s" % stream_names[idx],
                        # add handler tag (e.g. read by ffmpeg < 4.1)
                        "-metadata:s:a:%d" % idx,
                        "handler=%s" % stream_names[idx],
                        # add handler tag for ffmpeg >= 4.1
                        "-metadata:s:a:%d" % idx,
                        "handler_name=%s" % stream_names[idx]

from stempeg.

nils-werner avatar nils-werner commented on June 3, 2024

The Unknown language sounds like it may be reading the language metadata field. Try

-metadata:s:a:1 language=eng

and see if it shows English

from stempeg.

faroit avatar faroit commented on June 3, 2024

it does, but it seems to only allow ISO certfied languages :-(

from stempeg.

faroit avatar faroit commented on June 3, 2024

Alright, macOS, you had your chance ...

from stempeg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.