Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-17 Thread CMG DiGiTaL
> > Now I understand why you posted 2 logs.. Exactly!... it was to show that the batch, when the file had a cover art, read the same record twice. .And do you really need -vsync vfr ? I'm no expert, but I think it's > totally useless in this situation. > Now you don't need it anymore, I

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-13 Thread Reino Wijnsma
Hello Clamarc, On 2022-03-07T03:53:10+0100, CMG DiGiTaL wrote: > [...] > ffmpeg -hide_banner -i "%file% -filter_complex > "[0:a]loudnorm=print_format=summary" -f null NUL 2>1.txt You forgot a closing double-quote after %file%. And btw, -af instead of -filter_complex would do as well. > [...]

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-06 Thread CMG DiGiTaL
hi Reino, Below is the Batch code: @echo off chcp 65001 cls echo * echo * ATTENTION ! * echo * * echo * 1. COPY the Audio file(s) you want to

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-06 Thread Reino Wijnsma
On 2022-03-06T18:35:11+0100, CMG DiGiTaL wrote: > what is happening [...] Only one way to find out and that is to have a look at your Batch code. -- Reino ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-06 Thread CMG DiGiTaL
> I don't know why you're posting 2 logs. Ok sorry, I posted both codes so I can verify that the code works. > For the second one your Batch code doesn't appear to work correctly for the bitrate and samplerate. what is happening is that it seems that when the file has cover art, the batch is

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-03-06 Thread Reino Wijnsma
On 2022-03-01T03:23:25+0100, CMG DiGiTaL wrote: > sorry I sent the wrong log, follow the right log: > > [...] > *-c:v copy -acodec mp3 -b:a 32 -ar:a 44100* > > [...] > *-c:v copy -acodec mp3 -b:a -ar:a N/A* I don't know why you're posting 2 logs. The first one is obviously correctly being

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-28 Thread CMG DiGiTaL
> > > [...] > > -c:v copy -map 0:0 -acodec mp3 -b:a -ar:a N/A > Apparently you did not. > > sorry I sent the wrong log, follow the right log: ffmpeg started on 2022-02-28 at 22:29:54 Report written to "ffmpeg-20220228-222954.log" Log level: 48 Command line: *ffmpeg *-report -i "Lob\xe3o -

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-28 Thread Reino Wijnsma
On 2022-03-01T01:17:12+0100, CMG DiGiTaL wrote: > I removed the -map 0:0 > [...] > > log: > > [...] > -c:v copy -map 0:0 -acodec mp3 -b:a -ar:a N/A Apparently you did not. -- Reino ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-28 Thread CMG DiGiTaL
> > > With -map 0:0 you tell FFmpeg to process only the audio-stream. Remove it. > > hi Reino, I removed the -map 0:0 and the same message continues, below the message I sent a log of the file: [NULL @ 013de58f8b40] Unable to find a suitable output format for 'N/A' N/A: Invalid argument log:

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-28 Thread Reino Wijnsma
On 2022-02-28T19:05:18+0100, CMG DiGiTaL wrote: > -c:v copy -map 0:0 -acodec mp3 -b:a %%c -ar:a %%b > [...] > [NULL @ 02c4fdb37740] *Unable to find a suitable* *output format for > 'N/A'* With -map 0:0 you tell FFmpeg to process only the audio-stream. Remove it. -- Reino

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-28 Thread CMG DiGiTaL
> > > > Is there a way to check if the file has a cover and if so, record the > cover > > along with it? > Simply add -c:v copy. > hi Reino, I entered -c:v copy in command line as you suggested see below: FOR /F "tokens=1,2 delims=," %%b IN ('ffprobe -v 0 -show_entries

Re: [FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-27 Thread Reino Wijnsma
On 2022-02-26T09:14:05+0100, CMG DiGiTaL wrote: > Is there a way to check if the file has a cover and if so, record the cover > along with it? Simply add -c:v copy. -- Reino ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org

[FFmpeg-user] mp3 audio output recording error message when he has Cover

2022-02-26 Thread CMG DiGiTaL
Is there a way to check if the file has a cover and if so, record the cover along with it? conversion command line: FOR /F "tokens=1,2 delims=," %%b IN ('ffprobe -v 0 -show_entries stream^=bit_rate^,sample_rate -of csv^=p^=0 "!filename!.mp3"') DO ffmpeg -hide_banner -i "!filename!.mp3" -af