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 quite

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 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 view,

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 tomash...@gmail.com wrote: Hello, When a file has more audio tracks, it is handy to name them and at least VLC can show their names - or

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 21:06:46 +0100, DopeLabs dopel...@dubstep.fm 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

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 dopel...@dubstep.fm 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

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 22:15:29 +0100, James Darnley james.darn...@gmail.com wrote: On 2014-11-02 22:10, Tomáš Hnyk wrote: On Sun, 02 Nov 2014 21:06:46 +0100, DopeLabs dopel...@dubstep.fm wrote: streams are identified using numbers, starting from 0

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Sun, 02 Nov 2014 22:28:22 +0100, Moritz Barsnick barsn...@gmx.net 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

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:50:22 +0100, James Darnley james.darn...@gmail.com 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,

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Tomáš Hnyk
On Mon, 03 Nov 2014 00:28:41 +0100, Moritz Barsnick barsn...@gmx.net 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

Re: [FFmpeg-user] Naming an audio track

2014-11-02 Thread Carl Eugen Hoyos
Moritz Barsnick barsnick at 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