Avideo for sound files?

3 respuestas [Último envío]
GrevenGull
Desconectado/a
se unió: 12/18/2017

Does it exist a program like Avideo but just for sound files/sound URLS?

aloniv

I am a translator!

Desconectado/a
se unió: 01/11/2011

There's no need to convert webm files! You can just extract the vorbis audio using a command like this one.
for i in *.webm; do ffmpeg -i "$i" -acodec copy "`basename "$i" .webm`.ogg"; done;

Magic Banana

I am a member!

I am a translator!

Desconectado/a
se unió: 07/24/2010

youtube-dl's output https://trisquel.info/forum/download-mp4-file-or-execute-javascript#comment-133021 suggests that the tool can download the sole audio. Inside the Web browser, the ViewTube GreaseMonkey script does that too.

GrevenGull
Desconectado/a
se unió: 12/18/2017

Yes :) with the -x argument as stated above here :)