Re: [FFmpeg-user] Naming an audio track

2014-11-03 Thread Moritz Barsnick
On Mon, Nov 03, 2014 at 12:12:21 +0100, Moritz Barsnick wrote: > I do see ffmpeg has a function named mov_write_track_udta_tag(), > called from mov_write_trak_tag(), called from mov_write_moov_tag(), > but I don't know if it gets used and whether it does the "right > thing" from VLC's point of vie

Re: [FFmpeg-user] Naming an audio track

2014-11-03 Thread Moritz Barsnick
[Replying to self] On Mon, Nov 03, 2014 at 10:21:39 +0100, Moritz Barsnick wrote: > I do not know, though, whether "name" is a header such as "stco" or > "udta". So apparently we're looking as MPEG4/MOV containers here. That's what Tomáš was using as well, and where I managed to reproduce. Using

Re: [FFmpeg-user] Naming an audio track

2014-11-03 Thread Moritz Barsnick
On Mon, Nov 03, 2014 at 01:47:23 +, Carl Eugen Hoyos wrote: > > $ HandBrakeCLI [...] --aname "Name of audio track 1,Name of audio track 2" > If somebody could now either upload a small sample or > provide an actual command line, we could try to > implement the missing feature... Sorry, I was

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Carl Eugen Hoyos
Moritz Barsnick gmx.net> writes: > Okay, now we know how to produce a file in which > VLC recognizes the names of audio streams: > $ HandBrakeCLI [...] --aname "Name of audio track 1,Name of audio track 2" If somebody could now either upload a small sample or provide an actual command line, we

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Mon, 03 Nov 2014 00:28:41 +0100, Moritz Barsnick wrote: On Sun, Nov 02, 2014 at 23:24:58 +0100, Tomáš Hnyk wrote: encoder : HandBrake 0.9.9 2013051800 Okay, now we know how to produce a file in which VLC recognizes the names of audio streams: $ HandBrakeCLI [...] --aname "N

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Moritz Barsnick
On Sun, Nov 02, 2014 at 23:24:58 +0100, Tomáš Hnyk wrote: > encoder : HandBrake 0.9.9 2013051800 Okay, now we know how to produce a file in which VLC recognizes the names of audio streams: $ HandBrakeCLI [...] --aname "Name of audio track 1,Name of audio track 2" Only HandBrake and V

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 22:50:22 +0100, James Darnley wrote: On 2014-11-02 22:39, Tomáš Hnyk wrote: Unfortunately, no, the file in question has 7,2 GB. I attach a screenshot of what I mean. Tomas Can you post what gets printed when you run: ffmpeg -i BIGFILE Sure, here it goes: ffmpeg -i BI

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread James Darnley
On 2014-11-02 22:39, Tomáš Hnyk wrote: > Unfortunately, no, the file in question has 7,2 GB. I attach a > screenshot of what I mean. > Tomas Can you post what gets printed when you run: ffmpeg -i BIGFILE signature.asc Description: OpenPGP digital signature _

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 22:28:22 +0100, Moritz Barsnick wrote: On Sun, Nov 02, 2014 at 22:20:58 +0100, Tomáš Hnyk wrote: I tried both name and title and it does not show in VLC (it shows them in the source file). Do you happen to have a (short) sample which shows your desired behavior in VLC

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Moritz Barsnick
On Sun, Nov 02, 2014 at 22:20:58 +0100, Tomáš Hnyk wrote: > I tried both name and title and it does not show in VLC (it shows them in > the source file). Do you happen to have a (short) sample which shows your desired behavior in VLC? Thanks, Moritz _

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 22:15:29 +0100, James Darnley wrote: On 2014-11-02 22:10, Tomáš Hnyk wrote: On Sun, 02 Nov 2014 21:06:46 +0100, DopeLabs wrote: streams are identified using numbers, starting from 0 https://ffmpeg.org/ffmpeg-all.html#Stream-specifiers-1 Yes, I know. I could use

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread James Darnley
On 2014-11-02 22:10, Tomáš Hnyk wrote: > > On Sun, 02 Nov 2014 21:06:46 +0100, DopeLabs wrote: > >> streams are identified using numbers, starting from 0 >> >> https://ffmpeg.org/ffmpeg-all.html#Stream-specifiers-1 > > Yes, I know. I could use metadata:s:a:1 language=eng to set the > language

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 21:06:46 +0100, DopeLabs wrote: streams are identified using numbers, starting from 0 https://ffmpeg.org/ffmpeg-all.html#Stream-specifiers-1 Yes, I know. I could use metadata:s:a:1 language=eng to set the language of the second audios stream, but how would I set its n

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread DopeLabs
streams are identified using numbers, starting from 0 https://ffmpeg.org/ffmpeg-all.html#Stream-specifiers-1 > On Nov 2, 2014, at 11:55 AM, Tomáš Hnyk wrote: > > Hello, > When a file has more audio tracks, it is handy to name them and at least VLC > can show their names - or titles, I am not

[FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
Hello, When a file has more audio tracks, it is handy to name them and at least VLC can show their names - or titles, I am not sure about the terminology - in menu under Audio>Audio Track. How do I set the names using ffmpeg? I know how to set the language using -metadata:s:a:0 language=eng