[App] Movie Player Seek Patch

Here are software that related with Samsung F series TVs.
Please don't create any new topic here unless you have software to post/release.

User avatar
brunogts77
Posts: 768
Joined: Sat Feb 18, 2012 8:34 pm

Re: [App] Movie Player Seek Patch

Post by brunogts77 »

zoelechat wrote:
sectroyer wrote:Edit init script. Are you sure you only have problem with seek patch. Does disabling seek patch helps with your reboot problem ?
He has the same problem with moviedelpatch, and yes stopping scripts solves reboot issue.

@bruno
Open 99_96_SeekPatch.init in text editor (use Notepad++, not Windows Notepad!!!)
Find the line:

Code: Select all

. /dtv/SGO.env
and add this line just under it:

Code: Select all

sleep 360
Save, install script to TV as described, reboot TV, wait 7/8 minutes and see if patch works or if TV reboots.
just like this:

Code: Select all

#!/bin/sh
#
# ? Copyright 1996-2014, zoelechat@SamyGO
#
# sleep 360
. /dtv/SGO.env

PATCHDIR=$SYSROOT/opt/privateer/usr/bin

#Seconds to seek, negative values to rewind
LeftKey=-60
RightKey=60
DownKey=-300
UpKey=300

stop_bootloop()
{
	for USB in /dtv/usb/sd* ; do
		echo "checking $USB"
		[ -e $USB/STOP ] && echo "STOP found. Script exit..." && exit 1
	done
}

case $1 in 
	start)
	stop_bootloop
	$PATCHDIR/seekpatch -n exeAPP -l $LeftKey -r $RightKey -o $DownKey -u $UpKey 2>&1 | tee /dtv/SeekPatch.log
	;;
	stop)
	;;
	status)
	[ -f /dtv/SeekPatch.log ] && cat /dtv/SeekPatch.log || echo "Not started"
	;;
	*)
	echo "Usage: $0 {start|stop|status}" 1>&2
	exit 0
	;;
esac
UE42F5570 T-MST12DEUC_1119] [OTN=OFF] [OSCAM=ON]
UE55JU6870 T-HKMDEUC-1480 [OSCAM=ON]
sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] Movie Player Seek Patch

Post by sectroyer »

Sorry I still don't get how you did stop it :) try running this:

Code: Select all

rm full_path_to_init_moviedelete_patch_script

Code: Select all

rm full_path_to_init_seekpatch_script
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!
User avatar
brunogts77
Posts: 768
Joined: Sat Feb 18, 2012 8:34 pm

Re: [App] Movie Player Seek Patch

Post by brunogts77 »

How did you disable it ?
Put usb stick on tv with fille "Stop" and then over FTP change script extension "init" to "dis"!
Last edited by brunogts77 on Thu Oct 09, 2014 5:37 pm, edited 1 time in total.
UE42F5570 T-MST12DEUC_1119] [OTN=OFF] [OSCAM=ON]
UE55JU6870 T-HKMDEUC-1480 [OSCAM=ON]
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] Movie Player Seek Patch

Post by zoelechat »

brunogts77 wrote:just like this:
SpoilerShow

Code: Select all

#!/bin/sh
#
# ? Copyright 1996-2014, zoelechat@SamyGO
#
# sleep 360
. /dtv/SGO.env

PATCHDIR=$SYSROOT/opt/privateer/usr/bin

#Seconds to seek, negative values to rewind
LeftKey=-60
RightKey=60
DownKey=-300
UpKey=300

stop_bootloop()
{
	for USB in /dtv/usb/sd* ; do
		echo "checking $USB"
		[ -e $USB/STOP ] && echo "STOP found. Script exit..." && exit 1
	done
}

case $1 in 
	start)
	stop_bootloop
	$PATCHDIR/seekpatch -n exeAPP -l $LeftKey -r $RightKey -o $DownKey -u $UpKey 2>&1 | tee /dtv/SeekPatch.log
	;;
	stop)
	;;
	status)
	[ -f /dtv/SeekPatch.log ] && cat /dtv/SeekPatch.log || echo "Not started"
	;;
	*)
	echo "Usage: $0 {start|stop|status}" 1>&2
	exit 0
	;;
esac
Yes, but remove "#" before "sleep 360" or command won't be executed :)
I do NOT receive any PM. Please use forum.
sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] Movie Player Seek Patch

Post by sectroyer »

brunogts77 wrote:
How did you disable it ?
Put usb stick on tv with fille "Stop" and then over FTP change script extension "init" to "dis"!
ahh and you changed only extensions of these two init scripts? And now WITHOUT usb plugged in tv doesn't reboot anymore ?
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!
User avatar
brunogts77
Posts: 768
Joined: Sat Feb 18, 2012 8:34 pm

Re: [App] Movie Player Seek Patch

Post by brunogts77 »

zoelechat wrote:
brunogts77 wrote:just like this:
SpoilerShow

Code: Select all

#!/bin/sh
#
# ? Copyright 1996-2014, zoelechat@SamyGO
#
# sleep 360
. /dtv/SGO.env

PATCHDIR=$SYSROOT/opt/privateer/usr/bin

#Seconds to seek, negative values to rewind
LeftKey=-60
RightKey=60
DownKey=-300
UpKey=300



stop_bootloop()
{
	for USB in /dtv/usb/sd* ; do
		echo "checking $USB"
		[ -e $USB/STOP ] && echo "STOP found. Script exit..." && exit 1
	done
}

case $1 in 
	start)
	stop_bootloop
	$PATCHDIR/seekpatch -n exeAPP -l $LeftKey -r $RightKey -o $DownKey -u $UpKey 2>&1 | tee /dtv/SeekPatch.log
	;;
	stop)
	;;
	status)
	[ -f /dtv/SeekPatch.log ] && cat /dtv/SeekPatch.log || echo "Not started"
	;;
	*)
	echo "Usage: $0 {start|stop|status}" 1>&2
	exit 0
	;;
esac
Yes, but remove "#" before "sleep 360" or command won't be executed :)
OK
Ok, i will try!
Last edited by brunogts77 on Thu Oct 09, 2014 5:42 pm, edited 2 times in total.
UE42F5570 T-MST12DEUC_1119] [OTN=OFF] [OSCAM=ON]
UE55JU6870 T-HKMDEUC-1480 [OSCAM=ON]
zoelechat
SamyGO Moderator
Posts: 8615
Joined: Fri Apr 12, 2013 7:32 pm
Location: France

Re: [App] Movie Player Seek Patch

Post by zoelechat »

@sectroyer
scripts enabled: bootloop
scripts disabled: no bootloop
:)
I do NOT receive any PM. Please use forum.
User avatar
brunogts77
Posts: 768
Joined: Sat Feb 18, 2012 8:34 pm

Re: [App] Movie Player Seek Patch

Post by brunogts77 »

sectroyer wrote:
brunogts77 wrote:
How did you disable it ?
Put usb stick on tv with fille "Stop" and then over FTP change script extension "init" to "dis"!
ahh and you changed only extensions of these two init scripts? And now WITHOUT usb plugged in tv doesn't reboot anymore ?
Yes!!! :D
UE42F5570 T-MST12DEUC_1119] [OTN=OFF] [OSCAM=ON]
UE55JU6870 T-HKMDEUC-1480 [OSCAM=ON]
sectroyer
Official SamyGO Developer
Posts: 6305
Joined: Wed May 04, 2011 5:10 pm

Re: [App] Movie Player Seek Patch

Post by sectroyer »

Hehe, strange add sleep 360 and see what happens, worse case scenario you will have some time to disable it ;)
I do NOT support "latest fw" at ALL. If you have one you should block updates on router and wait for it to STOP being "latest":)
If you want me to help you please paste FULL log(s) to "spoiler"/"code" bbcodes or provide link(s) to pasted file(s) on https://pastebin.com Otherwise "NO HELP"!!!
If you want root DISABLE internet access to your device!!!!
DO NOT EVER INSTALL FIRMWARE UPGRADE !!!!
User avatar
brunogts77
Posts: 768
Joined: Sat Feb 18, 2012 8:34 pm

Re: [App] Movie Player Seek Patch

Post by brunogts77 »

Ok, I have tried but tv reboots!!! :twisted:
UE42F5570 T-MST12DEUC_1119] [OTN=OFF] [OSCAM=ON]
UE55JU6870 T-HKMDEUC-1480 [OSCAM=ON]

Post Reply

Return to “[F] Software”