I am trying to use ffmpeg to decode audio data. Although it works to load from a file, I would like to avoid using files because I would like to use a temporary one for this. Instead, I would like to pass the data (which I previously uploaded) using stdin.
Is it possible?
eg.
(it should also work with ffprobe and ffplay)
ffmpeg has a special pipe flag that instructs the program to consume stdin. note that usually the input format should be specified explicitly.
( 16- PCM):
cat file.mp3 | ffmpeg -f mp3 -i pipe: -c:a pcm_s16le -f s16le pipe:
docs
Source: https://habr.com/ru/post/1684544/More articles:How to use "cloud" styles in VueJS components for a single file? - vue.jsHow to write a function type that strictly requires its parameters in Typescript - reduxHow to speed up dereferencing a pointer? - cProvidePlugin does not work with jquery - webpack - webpackHow to subscribe to events / observables weakly - eventspython - what makes an income? - pythonStride () excludes "pass-through" value in some cases when using Double - doublehttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1684547/convert-pandas-series-of-lists-to-dataframe&usg=ALkJrhh8Gz6nSAVoReWKt6Fg26vKb9fbNQSending the response "at the beginning" 2xx before receiving the request - servletsHow to get PyAudio version 0.2.11 - pythonAll Articles