Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to record aac audio from url?

I record audio successfully from an URL that it seems to be mp3 source, sending this command.

$ ffmpeg -y -t "00:01:00" -i $url1 -c copy url1.mp3
ffmpeg version N-93762-ge384f6f2f9 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7.4.0 (GCC)
configuration:
libavutil      56. 26.100 / 56. 26.100
libavcodec     58. 52.100 / 58. 52.100
libavformat    58. 27.103 / 58. 27.103
libavdevice    58.  7.100 / 58.  7.100
libavfilter     7. 50.100 /  7. 50.100
libswscale      5.  4.100 /  5.  4.100
libswresample   3.  4.100 /  3.  4.100
Input #0, mp3, from 'http://someurl1:1234':

Now, I get error when I try to record from another URL that seems to be AAC audio source.

$ ffmpeg -y -t "00:01:00" -i $url2 -c copy url2.mp3
ffmpeg version N-93762-ge384f6f2f9 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7.4.0 (GCC)
configuration:
libavutil      56. 26.100 / 56. 26.100
libavcodec     58. 52.100 / 58. 52.100
libavformat    58. 27.103 / 58. 27.103
libavdevice    58.  7.100 / 58.  7.100
libavfilter     7. 50.100 /  7. 50.100
libswscale      5.  4.100 /  5.  4.100
libswresample   3.  4.100 /  3.  4.100
Input #0, aac, from 'http://someurl2:1234':
Metadata:
    icy-notice1     : <BR>This stream requires <a href="http://www.winamp.com">Winamp</a><BR>
    icy-notice2     : SHOUTcast DNAS/posix(linux x64) v2.5.5.733<BR>
    icy-name        : some name
    icy-genre       : Talk
    icy-br          : 48
    icy-sr          : 22050
    icy-url         :
    icy-pub         : 0
    StreamTitle     : some title
Duration: N/A, bitrate: 47 kb/s
    Stream #0:0: Audio: aac (HE-AACv2), 44100 Hz, stereo, fltp, 47 kb/s
[mp3 @ 0x80003c280] Invalid audio stream. Exactly one MP3 audio stream is required.
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
Stream mapping:
Stream #0:0 -> #0:0 (copy)
    Last message repeated 1 times

If I try to save it as aac file I get this message:

$ ffmpeg -y -t "00:01:00" -i $url2 -c copy url2.aac
ffmpeg version N-93762-ge384f6f2f9 Copyright (c) 2000-2019 the FFmpeg developers
  built with gcc 7.4.0 (GCC)
  configuration:
  libavutil      56. 26.100 / 56. 26.100
  libavcodec     58. 52.100 / 58. 52.100
  libavformat    58. 27.103 / 58. 27.103
  libavdevice    58.  7.100 / 58.  7.100
  libavfilter     7. 50.100 /  7. 50.100
  libswscale      5.  4.100 /  5.  4.100
  libswresample   3.  4.100 /  3.  4.100
Input #0, aac, from 'http://someurl2:1234':
  Metadata:
    icy-notice1     : <BR>This stream requires <a href="http://www.winamp.com">Winamp</a><BR>
    icy-notice2     : SHOUTcast DNAS/posix(linux x64) v2.5.5.733<BR>
    icy-name        : some name
    icy-genre       : Talk
    icy-br          : 48
    icy-sr          : 22050
    icy-url         :
    icy-pub         : 0
    StreamTitle     : some title
  Duration: N/A, bitrate: 48 kb/s
    Stream #0:0: Audio: aac (HE-AACv2), 44100 Hz, stereo, fltp, 48 kb/s
Output #0, adts, to 'url2.aac':
  Metadata:
    icy-notice1     : <BR>This stream requires <a href="http://www.winamp.com">Winamp</a><BR>
    icy-notice2     : SHOUTcast DNAS/posix(linux x64) v2.5.5.733<BR>
    icy-name        : some name
    icy-genre       : Talk
    icy-br          : 48
    icy-sr          : 22050
    icy-url         :
    icy-pub         : 0
    StreamTitle     : some title
    encoder         : Lavf58.27.103
    Stream #0:0: Audio: aac (HE-AACv2), 44100 Hz, stereo, fltp, 48 kb/s
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
size=       0kB time=00:00:00.00 bitrate=N/A speed=   0x
video:0kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Output file is empty, nothing was encoded (check -ss / -t / -frames parameters if used)

How to record when the source audio from URL is aac? Is there a way to identify before recording if it is mp3 or aac? Thanks in advance

like image 587
Ger Cas Avatar asked Sep 16 '25 03:09

Ger Cas


1 Answers

In your first command, using -c copy is wrong, because you need to reencode from aac (HE-AACv2) to mp3.

See ffmpeg documentation:

a special value copy (output only) to indicate that the stream is not to be re-encoded

I suggest you try this:

ffmpeg -y -t "00:01:00" -i [stream URL] -codec:a libmp3lame output.mp3

Unfortunately, I could not test it against the URL you provided in the comments (http://dreamsiteradiocp4.com:8120/: Connection refused), but it successfully worked with AAC streams listed at fmstream.org.

Reference: video.stackexchange.com

like image 60
Pamphile Avatar answered Sep 19 '25 14:09

Pamphile