- 代碼: 選擇全部
realplayer
alsa-oss
2:編輯 RealPlayer 啟動腳本
- 代碼: 選擇全部
vi /usr/lib/real-player/realplay
尋找:
- 代碼: 選擇全部
if [ -n "$DEBUG" -a -x "$CATCHSEGV" ]; then
$CATCHSEGV $REALPLAYBIN ${1+"$@"}
else
while /bin/true; do
# Restart the player if exit code is 10
$REALPLAYBIN "$@"
if [ $? -ne 10 ]; then
break
fi
done
fi
取代:
- 代碼: 選擇全部
if [ -n "$DEBUG" -a -x "$CATCHSEGV" ]; then
$CATCHSEGV $REALPLAYBIN ${1+"$@"}
else
while /bin/true; do
# Restart the player if exit code is 10
aoss $REALPLAYBIN "$@"
if [ $? -ne 10 ]; then
break
fi
done
fi
主要是加入 aoss,也就是使用 alsa-oss 來開啟 RealPlayer 。