Jump to content


Photo

[7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive


  • Please log in to reply
27 replies to this topic

#1 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 00:12

Hi,

 

as the title say - if i insert a dvd in my usb dvd-rw drive the dvd is not mounted automatically, it's on vu ultimo 4k

the vu ultimo 4k needs the kerneldrivers cdrom and sr_mod which i have installed and loaded but still no luck.

i have testet it many times and with 4 differnt dvds.

 

the dvd player plugin i think is also buggy, because if i start a dvd it's ok but if i change the audio track no audio anymore to hear, same  if i skip forward or backward

but maybe these are driver problems from vu (i don't know).

but what i know earlier with pli 4 and the et9000 dvd playback was always fine.

 

 

regards

Pike


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #2 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 20 October 2019 - 09:18

Hi,

which device is used for the drive? /dev/sr0 ? You should see it in the dmesg output.
According to this bdpoll is called when drive is detected:
https://github.com/O...x/mdev.conf#L42
Is the binary present on your box?
Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #3 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 18:16

Hi betacentauri,

 

the binary bdpoll is here and it is also executable.

dmesg says;

 1342.259851] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
 1342.267367] cdrom: Uniform CD-ROM driver Revision: 3.20
 1342.273703] sr 5:0:0:0: Attached scsi CD-ROM sr0

so the device is sr0

 

but if i insert a dvd ( in this case with name DEEP_BLUE_SEA) i can see with ftp a directory with that name see the following picture;

Attached File  filezilla.jpg   123.92KB   1 downloads

but if i change in this directory it is always empty, so nothing is mounted and the dvdplayer plugin didn't start.

 

this usb-dvd-drive works in other images (oatv) and earlier in older pli images (version 4) always without problems.

 

i'am also not able to mount it manually with a fstab entry as following;

/dev/sr0    /media/dvd    udf,iso9660    user,noauto,exec,utf8    0 0

and then the command;

mount /dev/sr0

it comes the following output;

mount: mounting /dev/sr0 on /media/dvd failed: No such device

but a;

ls -l /dev

shows that;

brw-rw-r--    1 root     root       11,   0 Oct 20 18:43 sr0

 i have no idea at the moment what is wrong.

 

 

regards

Pike

 


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #4 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 18:26

something more infos !

root@vuultimo4k:~# DVD_ROM=/dev/sr0
root@vuultimo4k:~# df -m $DVD_ROM | grep '/' | awk {'print $3'}
df: /dev/sr0: can't find mount point

bit if i use a dvd copy script as following;

#!/bin/bash

## Variablen ##
BOXIP=http://localhost

DVDBACKUP_PACKAGE=dvdbackup
DVDBACKUP=/usr/bin/dvdbackup
NICE=/bin/nice
NICE_ARGS="-n 19"
WGET=/usr/bin/wget

DVD_ROM=/dev/sr0

HDD=/media/hdd
TARGETDIR=$HDD/movie/_Converted/video/dvdbackup
WORKDIR=$HDD/movie/_Converted/_temp
DVD_INFO=$WORKDIR/dvd_info.txt
TMP=/tmp
LOGFILE=$TMP/dvdbackup.log


# Konsole (Fenster im OSD am TV) schliessen damit man das bei Ausfuehrung
# direkt an der Box mit z.b: Hotkey nicht selbst zu tun braucht.
sleep 3
$WGET -q -O - $BOXIP/web/remotecontrol?command=352


# Generelles Logging.
##exec >$LOGFILE; exec 2>&1 (funktioniert nicht in der bash (OpenATV ab Version 4.2 hat bash an Board))
exec 3>&1 4>&2
trap 'exec 2>&4 1>&3' 0 1 2 3
exec 1>$LOGFILE 2>&1


# Falls das Script erneut gestartet wird da es zuvor aus welchem Grund auch
# immer abgebrochen ist, die eventuell verbliebenen Altlasten loeschen.
if [ -d $WORKDIR/*/ ] ; then
	$NICE $NICE_ARGS rm -rf $WORKDIR/*/
fi


# Job Start/Startzeit
STARTDATE="$(date +%a.%d.%b.%Y-%H:%M)" && echo -e "\n\nJOB START -> $STARTDATE\n\n" && sleep 7
$WGET -O - -q "$BOXIP/web/message?text=Starte%20DVD%20kopieren%20...%20->%20$STARTDATE&type=1&timeout=10" > /dev/null && sleep 5


# OSD Fehler Ausgabe.
osd_error_message() {
	sleep 11
	$WGET -O - -q "$BOXIP/web/message?text=ABBRUCH%20---%20(%20Details%20dazu%20in%20$LOGFILE%20)&type=3" > /dev/null
	echo ""
}


# Benoetigtes Paket (dvdbackup) nachinstallieren falls nicht vorhanden.
if [ ! -f $DVDBACKUP ] ; then
opkg update

		if [ "$?" = "0" ] ; then
			echo -e "\nPaketmanagement Aktualisierung erfolgreich.\n"
			opkg install $DVDBACKUP_PACKAGE

				if [ "$?" = "0" ] ; then
					echo -e "Installation Programm $DVDBACKUP_PACKAGE erfolgreich.\n"
				else
					osd_error_message
					echo "ABBRUCH !\nInstallation Programm $DVDBACKUP_PACKAGE fehlgeschlagen."
					echo -e "Bitte Programm $DVDBACKUP_PACKAGE manuell installieren,\nund das Script erneut starten.\n" && exit 1
				fi

		else
			osd_error_message
			echo -e "\nABBRUCH !\nPaketmanagement Aktualisierung fehlgeschlagen -> Netzwerkverbindung pruefen."
			echo "Oder das Programm $DVDBACKUP_PACKAGE manuell installieren,"
			echo -e "da dieses fehlt aber unbedingt erforderlich ist, damit das Script laeuft.\n" && exit 1
		fi

else
	echo -e "\nProgramm $DVDBACKUP_PACKAGE ist vorhanden.\n"
fi


# Benoetigte Verzeichnisse erstellen falls nicht vorhanden.
if [ ! -d $TARGETDIR -o ! -d $WORKDIR ] ; then
	echo ""
	for verz in $TARGETDIR $WORKDIR
	do
		mkdir -p $verz

		if [ "$?" = "0" ] ; then
			echo -e "\nVerzeichnis;\n$verz\nerfolgreich angelegt.\n"
		else
			osd_error_message
			echo -e "\nABBRUCH !\nVerzeichnis;\n$verz\nanlegen fehlgeschlagen."
			echo -e "Bitte manuell erstellen,\nund das Script erneut starten.\n" && exit 1
		fi
	done
fi


# Berechnung ob genuegend Speicherplatz auf der HDD vorhanden ist um die DVD zu kopieren.
# Benoetigt wird hier in etwa die DVD-Groesse + zur Sicherheit noch ca. 200 Mb mehr.
DVDSIZE="$(df -m $DVD_ROM | grep '/' | awk {'print $3'})"
DVDSIZE=`expr $DVDSIZE + 200`

HDDFREE="$(df -m $HDD |grep $HDD |awk '{print $4}')"

if [ "$DVDSIZE" -ge "$HDDFREE" ] ; then
	DIFFERENCE=`expr $DVDSIZE - $HDDFREE + 200`
	osd_error_message
	echo "ABBRUCH !\nZu wenig freier Plattenplatz."
	echo "Bitte zusaetzlich ungefaehr $DIFFERENCE MB Platz auf"
	echo -e "der Platte frei machen, und das Script erneut starten.\n" && exit 1
fi

if [ "$DVDSIZE" -lt "$HDDFREE" ] ; then
	echo -e "\nGenuegend freier Plattenplatz -> $HDDFREE MB <- vorhanden.\n"
fi


# DVD auslesen um den Titel fuer die fertige DVD zu bestimmen.
$DVDBACKUP -i $DVD_ROM -I > $DVD_INFO

DVDTITEL=$(cat $DVD_INFO | grep "DVD-Video information" | cut -d" " -f8- | tr -d [\"])

if [ -z "$DVDTITEL" ] ; then
	NAME="NO_LABEL"
	DATE="$(date +%a-%b-%Y-%H-%M)"
	DVDTITEL=$NAME-$DATE
	echo -e "\n\nKein DVD-Titel erkannt -> DVD-Titel = $DVDTITEL\n"
else
	DVDTITEL=${DVDTITEL//[ ]/_}
	DVDTITEL=${DVDTITEL//Ä/AE}
	DVDTITEL=${DVDTITEL//Ö/OE}
	DVDTITEL=${DVDTITEL//Ü/UE}
	DVDTITEL=${DVDTITEL//ä/ae}
	DVDTITEL=${DVDTITEL//ö/oe}
	DVDTITEL=${DVDTITEL//ü/ue}
	DVDTITEL=${DVDTITEL//ß/SS}
	echo -e "\n\nDVD-Titel = $DVDTITEL\n"
fi


# DVD komplett kopieren - DVD-Struktur (AUDIO_TS,VIDEO_TS) wird erstellt.
echo -e "\nKopiere DVD $DVDTITEL -> auf die Platte ..." 
$NICE $NICE_ARGS $DVDBACKUP -n $DVDTITEL -M -i $DVD_ROM -o $WORKDIR

if [ "$?" = "0" ] ; then
	echo -e "\nDVD $DVDTITEL wurde erfolgreich kopiert.\n"
else
	osd_error_message
	echo -e "\nABBRUCH !\nDVD $DVDTITEL kopieren fehlgeschlagen."
	echo -e "Sorry, hat leider nicht geklappt - eventuell mit einer anderen DVD erneut versuchen.\n" && exit 1
fi


# Manchmal gibt es DVDs die nur den VIDEO_TS bzw. video_ts Ordner beinhalten, fuer diesen
# Fall wird fuer beste Kompatibilitaet der fehlende AUDIO_TS bzw. audio_ts Ordner erstellt. 
if ( [ -d $WORKDIR/$DVDTITEL/VIDEO_TS ] && [ ! -d $WORKDIR/$DVDTITEL/AUDIO_TS ] ) ; then
	mkdir $WORKDIR/$DVDTITEL/AUDIO_TS

		if [ "$?" = "0" ] ; then
			echo -e "\nOrdner AUDIO_TS fuer beste DVD Kompatibilitaet wurde erstellt in:"
			echo -e "$WORKDIR/$DVDTITEL\n"
		fi

elif ( [ -d $WORKDIR/$DVDTITEL/video_ts ] && [ ! -d $WORKDIR/$DVDTITEL/audio_ts ] ) ; then
	mkdir $WORKDIR/$DVDTITEL/audio_ts

		if [ "$?" = "0" ] ; then
			echo -e "\nOrdner audio_ts fuer beste DVD Kompatibilitaet wurde erstellt in:"
			echo -e "$WORKDIR/$DVDTITEL\n"
		fi
fi


# Verschieben der DVD-Struktur (AUDIO_TS, VIDEO_TS) in das Zielverzeichnis (TARGETDIR).
echo -e "\nVerschiebe DVD $DVDTITEL nach ->\n$TARGETDIR ..."
$NICE $NICE_ARGS mv $WORKDIR/$DVDTITEL $TARGETDIR

if [ "$?" = "0" ] ; then
	echo -e "\nDVD $DVDTITEL wurde erfolgreich verschoben nach:\n$TARGETDIR\n"
else
	$WGET -O - -q "$BOXIP/web/message?text=DVD%20$DVDTITEL%20verschieben%20fehlgeschlagen%20-%20nicht%20tragisch%20,%20(%20Details%20dazu%20in%20$LOGFILE%20)&type=2&timeout=15" > /dev/null
	echo -e "\n! DVD $DVDTITEL verschieben fehlgeschlagen - nicht tragisch !"
	echo -e "Einfach manuell z.b: per EMC nach:\n$TARGETDIR verschieben,"
	echo "und zwar deshalb weil für den Fall eines Abbruchs des"
	echo "Scripts, bei einem erneuten Start des Scripts alles unter:"
	echo -e "$WORKDIR geloescht wird.\n"
fi


# Job Ende/Endzeit bei Erfolg bzw. bei Teilerfolg falls nur die DVD-Struktur (AUDIO_TS,VIDEO_TS) erstellt werden konnte.
ENDDATE="$(date +%a.%d.%b.%Y-%H:%M)" && echo -e "\nJOB ENDE -> $ENDDATE\n\n"
$WGET -O - -q "$BOXIP/web/message?text=DVD%20kopieren%20erfolgreich%20beendet%20.%20->%20$ENDDATE&type=1" > /dev/null

exit

it can copy the dvd which is inserted in the usb dvd-drive (so reading is possible)  but the space calculation  in the script also fails with;

df: /dev/sr0: can't find mount point
expr: syntax error
/usr/script/dvdbackup_to_dvd_complete.sh: line 108: [: : integer expression expected
/usr/script/dvdbackup_to_dvd_complete.sh: line 116: [: : integer expression expected

regards

Pike


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #5 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 20 October 2019 - 19:47

Hi Pike,

 

I cannot test as I don't have a USB DVD drive. I have not much ideas. Only these:

Have you also installed UDF and ISO9660 kernel modules? As these are not compiled into the kernel.

Did it work before on VU ultimo4k with 7.1 or older images?

 

regards,

bc


Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #6 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 20:16

Hi betacentauri,

 

 

Have you also installed UDF and ISO9660 kernel modules? As these are not compiled into the kernel.

 

no, but i must look ...

but dvd.iso on hdd i can start

 

 

Did it work before on VU ultimo4k with 7.1 or older images?

 

i 'am not sure but maybe in openpli-6.2 it works and total sure in the old openpli-4.0 versions.

 

i found nor that in dmesg, but the dvd is ok because i testet it just in oatv-6.3 and no problem (mounted and dvd-player plugin started)

[ 1342.259851] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1342.267367] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1342.273703] sr 5:0:0:0: Attached scsi CD-ROM sr0
[ 2858.106221] sr 5:0:0:0: [sr0]  
[ 2858.109377] Result: hostbyte=0x00 driverbyte=0x08
[ 2858.114089] sr 5:0:0:0: [sr0]  
[ 2858.117239] Sense Key : 0x5 [current] 
[ 2858.121027] sr 5:0:0:0: [sr0]  
[ 2858.124175] ASC=0x6f ASCQ=0x3
[ 2858.127169] sr 5:0:0:0: [sr0] CDB: 
[ 2858.130666] cdb[0]=0x28: 28 00 00 3c 70 80 00 00 02 00
[ 2858.135971] end_request: I/O error, dev sr0, sector 15843840
[ 2858.141648] Buffer I/O error on device sr0, logical block 3960960
[ 2858.147758] Buffer I/O error on device sr0, logical block 3960961
[ 2858.211957] sr 5:0:0:0: [sr0]  

regards

Pike


Edited by Pike_Bishop, 20 October 2019 - 20:17.

Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #7 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 20:31

Hi betacentauri,

 

thanks - great :) it was the missing module udf;

opkg install kernel-module-udf
modprobe udf

now it was mounted and the dvd-plugin started but this dvd-player plugin is real very buggy,

 

often it comes after start that (see in the picture);

Attached File  dvd_player.jpg   37.53KB   1 downloads

 

and then if i press stop or exit button to stop the dvd and come back to menu it comes the spinner and

i must reboot the box with telnet command reboot (init 6 didn't work then)

it creates also a crashlog but with 0kb and this happened with dvd.isos on hdd too (not only with the usb dvd-drive).

 

 

regards

Pike


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #8 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 20 October 2019 - 23:07

Glad to hear one problem solved :)
Does automount now also work?
Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #9 WanWizard

  • PLi® Core member
  • 68,625 posts

+1,739
Excellent

Posted 20 October 2019 - 23:24

Is that dvd plugin one of ours? If so, it should have an RRECOMMENDS for that kernel module?


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #10 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 20 October 2019 - 23:35

Hi,

 

@betacentauri,

 

Does automount now also work?

 

yes.

 

@WanWizard

 

Is that dvd plugin one of ours?

 

yes i installed it from the feed.

 

 

regards

Pike


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #11 littlesat

  • PLi® Core member
  • 56,274 posts

+691
Excellent

Posted 21 October 2019 - 06:46

Vu drivers have a bug they do not always give the correct resolution back tonthe user environment...

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #12 WanWizard

  • PLi® Core member
  • 68,625 posts

+1,739
Excellent

Posted 21 October 2019 - 08:49

yes i installed it from the feed.

 

What is the exact name of the plugin? Then I'll have a look.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #13 littlesat

  • PLi® Core member
  • 56,274 posts

+691
Excellent

Posted 21 October 2019 - 09:08

Looks like a dependency that needs to be added...


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #14 WanWizard

  • PLi® Core member
  • 68,625 posts

+1,739
Excellent

Posted 21 October 2019 - 09:10

Yes, but we can't add it, we don't make the plugin.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #15 mrvica

  • Senior Member
  • 1,227 posts

+82
Good

Posted 21 October 2019 - 14:52

you don´t need the plugin at all, movie selection is just sufficient, you go with "Location" onto the DVD drive and highlight VIDEO_TS and press Enter

Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #16 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 21 October 2019 - 16:53

Hi,

 

the name of the plugin is (it is on feed);

enigma2-plugin-extensions-dvdplayer

is it from vu ?

 

 

regards

Pike


Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #17 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 21 October 2019 - 17:17

https://github.com/O...sions/DVDPlayer

Is part of e2 ;)


Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #18 WanWizard

  • PLi® Core member
  • 68,625 posts

+1,739
Excellent

Posted 21 October 2019 - 17:47

Found it, it is part of the Enigma repository for some reason.

 

edit: beaten to it... ;)


Edited by WanWizard, 21 October 2019 - 17:48.

Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #19 WanWizard

  • PLi® Core member
  • 68,625 posts

+1,739
Excellent

Posted 21 October 2019 - 17:58

Added the RRECOMMENDS.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: [7.2rc] no autostart if i insert a dvd in my usb dvd-rw drive #20 Pike_Bishop

  • Senior Member
  • 1,131 posts

+72
Good

Posted 21 October 2019 - 18:21

Hi mrvica,

 

you don´t need the plugin at all, movie selection is just sufficient, you go with "Location" onto the DVD drive and highlight VIDEO_TS and press Enter

 

no luck,i have deinstalled now the dvdplayer plugin , but dvd.iso then didn't start, here comes only a black screen with the infobar but nothing played.

but i can stop it with exit button.

 

then i would start a dvd structure with directory with name DEEP_BLUE_SEA  and in this directory are the VIDEO_TS and AUDIO_TS but then also black screen but now

with endless spinner exactly as here;

https://forums.openp...dpost&p=1115804

the same picture.

 

so that didn' work correct too with only movieselection.at least with vu ultimo 4k.

 

regards

Pike


Edited by Pike_Bishop, 21 October 2019 - 18:22.

Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K

Image: OpenPLI-8.3



1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users