web-dev-qa-db-ja.com

SMPlayerとGnome Player(実際にはmplayer)は、Lubuntuで再生できません(すぐにクラッシュします)。私に何ができる?

Lubuntu OSを再インストールしました。

Lubuntuおよびubuntu-restricted extrasをインストールしましたが、smplayerまたはgnomeプレーヤーでビデオを再生できません。

ログには次のようなものが表示されます。

/usr/bin/mplayer -noquiet -nofs -nomouseinput -sub-fuzziness 1
-identify -slave -vo xv, -nokeepaspect -framedrop -nodr -double -input conf=/usr/share/smplayer/input.conf -stop-xscreensaver -wid 50331689
 -monitorpixelaspect 1 -ass -embeddedfonts -ass-line-spacing 0 -ass-font-scale 1 -ass-styles /home/cprq/.config/smplayer/styles.ass -fontconfig -font Arial -subfont-autoscale 0 -subfont-osd-scale 20 -subfont-text-scale 20 -subcp ISO-8859-1 -subpos 100 -nocache -osdlevel 0 -vf-add screenshot -slices -channels 2 -af equalizer=0:0:0:0:0:0:0:0:0:0 -softvol -softvol-max 110
2
user47206

あなたが経験するのは 既知のバグ です。 Lubuntuには、デフォルトでmplayer2がインストールされています。これはmplayerのフォークです。代わりにmplayer2を削除して 'mplayer`をインストールしてみてください。つまり、次のようなものです。

Sudo apt-get purge mplayer2 && Sudo apt-get autoremove

Sudo apt-get install mplayer gecko-mediaplayer gnome-mplayer
3
mikewhatever