aligrudi / fbff

A small ffmpeg-based framebuffer media player
66 stars 11 forks source link

fbff: /dev/dsp busy? #3

Open anverb opened 3 years ago

anverb commented 3 years ago

Hi, when I try to open any file I recieve this: "fbff: /dev/dsp busy?". Any possible solutions?

aligrudi commented 3 years ago

Hi,

anverb @.***> wrote:

Hi, when I try to open any file I recieve this: "fbff: /dev/dsp busy?". Any possible solutions?

Some other program is probably using the OSS device. Try the following command to see which program:

$ fuser /dev/dsp

Is it a process that you have started yourself?

You can also pass -a- to fbff to disable audio.

Ali
m040601 commented 10 months ago

I have the same problem.

"fbff: /dev/dsp busy?"

Since this is almost 2 years old, I am not even sure if this "/dev/dsp" is suppose to exist on my modern up to date Archlinux

uname -a

Linux gigabyty 6.6.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 08 Nov 2023 16:05:38 +0000 x86_64 GNU/Linux

fuser /dev/dsp

Specified filename /dev/dsp does not exist.

I have installed fbff using, https://aur.archlinux.org/packages/fbff-git

Name            : fbff-git
Version         : 1:0.87.ae86d8e-1
Description     : A small ffmpeg-based framebuffer media player.
Architecture    : x86_64
URL             : http://repo.or.cz/w/fbff.git
Licenses        : GPL
Groups          : None
Provides        : fbff
Depends On      : ffmpeg
Optional Deps   : libmpeg3: alternative media backend
                  oss: sound support
Required By     : None
Optional For    : None
Conflicts With  : fbff
Replaces        : None
Installed Size  : 28.94 KiB
Packager        : Unknown Packager
Build Date      : Sat 18 Nov 2023 08:40:01 PM WET
Install Date    : Sat 18 Nov 2023 08:40:18 PM WET
Install Reason  : Explicitly installed
Install Script  : Yes
Validated By    : None
aligrudi commented 9 months ago

somename123 @.***> wrote:

I have the same problem.

"fbff: /dev/dsp busy?"

Since this is almost 2 years old, I am not even sure if this "/dev/dsp" is suppose to exist on my modern up to date Archlinux

uname -a

Linux gigabyty 6.6.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 08 Nov 2023 16:05:38 +0000 x86_64 GNU/Linux

fuser /dev/dsp

Specified filename /dev/dsp does not exist.

You need enable OSS emulation for alsa. This may help:

modprobe snd-pcm-oss snd-mixer-oss
Ali