You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some code:
ffmpeg.Input(inFileName).Output(outFileName, ffmpeg.KwArgs{
"acodec": "pcm_s16le",
"af": "afftdn",
"ar": 16000,
}).OverWriteOutput().WithOutput(os.Stdout).Run()
it is raise panic: cannot output on non-FilterableStream
but when I run compiled command in terminal:
ffmpeg -i ./676376294.mp3 -acodec pcm_s16le -af afftdn -ar 16000 ./676376294_out.wav -y
it's working fine
The text was updated successfully, but these errors were encountered:
I have some code:
ffmpeg.Input(inFileName).Output(outFileName, ffmpeg.KwArgs{
"acodec": "pcm_s16le",
"af": "afftdn",
"ar": 16000,
}).OverWriteOutput().WithOutput(os.Stdout).Run()
it is raise panic: cannot output on non-FilterableStream
but when I run compiled command in terminal:
ffmpeg -i ./676376294.mp3 -acodec pcm_s16le -af afftdn -ar 16000 ./676376294_out.wav -y
it's working fine
The text was updated successfully, but these errors were encountered: