Avideo for sound files?
- Inicie sesión ou rexístrese para enviar comentarios
Does it exist a program like Avideo but just for sound files/sound URLS?
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;
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.
Yes :) with the -x argument as stated above here :)
- Inicie sesión ou rexístrese para enviar comentarios