Search found 4 matches

by armitatz
Sun Jun 08, 2014 6:25 pm
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 339608

Re: Post your execute plugin scripts!

new version : #!/bin/bash # # Script for transcoding a mkv file with dts to a mkv file with ac3 sound. # It is supposed to be called from the execute script of torrent programm Deluge # Example : /home/pi/TransDTS # time1 and time2 define the time window at which the script will transcode the file #...
by armitatz
Sun Jun 08, 2014 5:39 pm
Forum: Development
Topic: XBMC Scrrensaver for raspberry
Replies: 0
Views: 2055

XBMC Scrrensaver for raspberry

I am using deluge to my raspberry pi. I have deluge running with xbmc at the same time with the following settings in deluge: active torrents : 4 , max downloading : 2 , max uploading : 4 , max speed : 800kb I also have the scheduler plugin and I have set it so that in the time zone between 1:00am u...
by armitatz
Wed Jun 04, 2014 10:57 am
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 339608

Re: Post your execute plugin scripts!

Well the script didn't worked :( However I updated it and tested it and the new version works. #!/bin/bash torrentid=$1 torrentname=$2 torrentpath=$3 if [ -d "${torrentname}" ] ; then for filename in $torrentpath/$torrentname/*.mkv do echo "sudo bash /home/pi/mkvdts2ac3.sh -d -i -m -n...
by armitatz
Tue Jun 03, 2014 5:57 pm
Forum: Plugins
Topic: Post your execute plugin scripts!
Replies: 47
Views: 339608

Re: Post your execute plugin scripts!

I try to run the script mkvdts2ac3 in order to automatically convert the dts track to ac3 because my setup can't play dts. So the script I try to run is #!/bin/bash torrentid=$1 torrentname=$2 torrentpath=$3 sudo bash /home/pi/mkvdts2ac3.sh -d -i -m -n -p 18 --new $torrentpath/$torrentname | at 02:0...