Hi,
@Betacentauri
I also happen only on encrypted channels, problem was solved by the so:
my litle change in file enigma2/lib/gdi/xineLib.cpp
***************
*** 124,130 ****
}
void cXineLib::playVideo(void) {
- xine_stop(stream);
end_of_stream = false;
videoPlayed = false;
--- 125,133 ----
}
void cXineLib::playVideo(void) {
+ if ( videoPlayed == true ) {
+ xine_stop(stream);
+ }
end_of_stream = false;
videoPlayed = false;
and running the script e2pc.sh
#!/bin/sh
#Start enigma2
if [ $(ps -A | grep -c enigma2) -eq 0 ]; then
/root/bin/mod_reload.sh
sleep 1
/usr/local/e2/bin/enigma2.sh &
fi
exit
my mod_reload.sh
#!/bin/sh
if [ $(ps -A | grep -c enigma2) -eq 0 ]; then
killall oscam
sleep 2
modprobe -r dvbsoftwareca
sleep 1
modprobe dvbsoftwareca
sleep 1
/usr/local/bin/oscam -c /etc/vdr/oscam &
fi
exit
If the first time there is't video and audio, the second time it works
Edited by Raider05, 7 February 2012 - 07:14.
E2PC, Ubuntu 12.04 x86, DVB-S2 card Omicom SkyStar 4, Nvidia card 9500GT 512Mb DDR2 driver 195.36.24, Satellites 9.0E, 36.0E
Git enigma2pc