Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-07-01 Thread Carl Eugen Hoyos
Am Mo., 1. Juli 2019 um 22:25 Uhr schrieb Dave Rice : > > > > On Jun 25, 2019, at 7:22 PM, Carl Eugen Hoyos wrote: > > > > Am Mi., 26. Juni 2019 um 00:11 Uhr schrieb Peter B. > > : > > > >> Is it possible somehow to transcode any source audio format type to its > >> raw, uncompressed format that

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-07-01 Thread Dave Rice
> On Jun 25, 2019, at 7:22 PM, Carl Eugen Hoyos wrote: > > Am Mi., 26. Juni 2019 um 00:11 Uhr schrieb Peter B. : > >> Is it possible somehow to transcode any source audio format type to its >> raw, uncompressed format that matches the source? >> >> I'm dealing with collections of mixed input

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-29 Thread Peter B.
On 28/06/2019 00:32, Moritz Barsnick wrote: > There's also the "hash" muxer with various hash functions (and its > alias muxer "md5"). > $ ffmpeg -i input -map 0:a -c:a copy -f hash - > or > $ ffmpeg -i input -map 0:a -c:a copy -hash md5 -f hash - > if you prefer MD5. Ooooh! Excellent! Didn't

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-28 Thread Paul B Mahol
On 6/28/19, Moritz Barsnick wrote: > On Thu, Jun 27, 2019 at 23:36:12 +0100, Kieran O Leary wrote: >> On Thu, 27 Jun 2019, 23:32 Moritz Barsnick, wrote: >> > $ ffmpeg -i input -map 0:a -c:a copy -f hash - >> > or >> > $ ffmpeg -i input -map 0:a -c:a copy -hash md5 -f hash - >> > if you prefer

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-28 Thread Moritz Barsnick
On Thu, Jun 27, 2019 at 23:36:12 +0100, Kieran O Leary wrote: > On Thu, 27 Jun 2019, 23:32 Moritz Barsnick, wrote: > > $ ffmpeg -i input -map 0:a -c:a copy -f hash - > > or > > $ ffmpeg -i input -map 0:a -c:a copy -hash md5 -f hash - > > if you prefer MD5 > > Out of curiosity,what is the

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-27 Thread Kieran O Leary
On Thu, 27 Jun 2019, 23:32 Moritz Barsnick, wrote: > On Thu, Jun 27, 2019 at 20:35:51 +0200, Carl Eugen Hoyos wrote: > > Am Do., 27. Juni 2019 um 18:57 Uhr schrieb Peter B. < > p...@das-werkstatt.com>: > > > > > It's actually just for hashing the content (single hash, instead > > > of framemd5),

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-27 Thread Moritz Barsnick
On Thu, Jun 27, 2019 at 20:35:51 +0200, Carl Eugen Hoyos wrote: > Am Do., 27. Juni 2019 um 18:57 Uhr schrieb Peter B. : > > > It's actually just for hashing the content (single hash, instead > > of framemd5), so playability is not really a concern. > > libavutil also supports (several) single hash

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-27 Thread Carl Eugen Hoyos
Am Do., 27. Juni 2019 um 18:57 Uhr schrieb Peter B. : > > Not all audio formats are playable in rawvideo format > > (just as not all video formats are) > > It's actually just for hashing the content (single hash, instead > of framemd5), so playability is not really a concern. libavutil also

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-27 Thread Peter B.
On 26/06/2019 01:22, Carl Eugen Hoyos wrote: > Am Mi., 26. Juni 2019 um 00:11 Uhr schrieb Peter B. : > >> So, instead of specifying "-f s16le" or "-f s24le", is there something >> like "-f rawaudio"? > Yes, there is a muxer that happily accepts audio and writes > it to a file (unchanged), it is

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-25 Thread Carl Eugen Hoyos
Am Mi., 26. Juni 2019 um 00:11 Uhr schrieb Peter B. : > Is it possible somehow to transcode any source audio format type to its > raw, uncompressed format that matches the source? > > I'm dealing with collections of mixed input format combinations, and am > trying to find a way to bash-automate

Re: [FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-25 Thread H. Vidal, Jr.
On 6/25/19 6:11 PM, Peter B. wrote: Hi everyone :) Is it possible somehow to transcode any source audio format type to its raw, uncompressed format that matches the source? I'm dealing with collections of mixed input format combinations, and am trying to find a way to bash-automate something.

[FFmpeg-user] Equivalent of "-f rawvideo" but for audio?

2019-06-25 Thread Peter B.
Hi everyone :) Is it possible somehow to transcode any source audio format type to its raw, uncompressed format that matches the source? I'm dealing with collections of mixed input format combinations, and am trying to find a way to bash-automate something. For video "-f rawvideo" seems to do