On 4/10/23 08:43, Go Canes wrote:
On Mon, Apr 10, 2023 at 11:22 AM stan via users
<users@lists.fedoraproject.org> wrote:

On Sat, 8 Apr 2023 21:17:37 -0700
ToddAndMargo via users <users@lists.fedoraproject.org> wrote:

On 4/8/23 19:07, ToddAndMargo via users wrote:
On 4/8/23 17:11, Go Canes wrote:
I'm curious what bugs you are encountering.

When I get a few 20 minutes, I will list them


vlc-3.0.18-2.fc37.x86_64
[snipped list of irritating behaviors]
VLC has started to annoy the snot out of me with
all the above bugs.  Time for me to switch away
from VLC.

Wow!  NOT a good fit for your use case.  Like walking with a stone
in your shoe. Life has too many irritations already, great to get rid of
some of them.

Agree that if vlc isn't fit for OP's purpose, then find another player.

I would never hit these.  It sounds like you could probably use an
audio player like audacious instead, since you aren't bothering with
the video.

If vlc is being launched from the command-line, one can try the
"--novideo" option.  There should be a similar option available via
the menus.


Occasionally, I will go through and dump the video.
Here are my notes:



ffmpeg to convert MP4, webm movies to audio only OGG:

        
$ dnf whatprovides ffmpeg

ffmpeg-4.1.3-2.fc30.x86_64 : Digital VCR and streaming server
Repo        : @System
Matched from:
Provide    : ffmpeg = 4.1.3-2.fc30

ffmpeg-4.1.3-2.fc30.x86_64 : Digital VCR and streaming server
Repo        : rpmfusion-free
Matched from:
Provide    : ffmpeg = 4.1.3-2.fc30



To convert one file:

ffmpeg -i videofile.mp4 -vn -acodec libvorbis audiofile.ogg


To remove video and caonvert to ogg audio:

ffmpeg -i video.any -vn -acodec libvorbis audio.ogg



To convert many files:

Note: rename *.MP4 to *.mp4

$ for vid in *.mp4; do ffmpeg -i "$vid" -vn -acodec libvorbis "${vid%.mp4}.ogg"; done

$ for vid in *.webm; do ffmpeg -i "$vid" -vn -acodec libvorbis "${vid%.webm}.ogg"; done

_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to