T.V

For all your off topic conversation requirements. No posts about gigs please, use the Music forum. As usual, no "NSFW" material, keep it clean.
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

deviant wrote:^^ holy crap! that's today innit?

:?: :!:
Yes
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

my nas just downloaded it for me.

suppose i should finish season 2 and 3 first eh.
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
mrj
Posts: 13377
Joined: Mon Jun 06, 2005 10:07 am
Location: the Penski file

Re: T.V

Post by mrj »

Nope. Just watch it. It will be like you've travelled forward in time w00000000w000000w000000000000000000
He's climbing in your windows, he's snatching your people up.
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

What do you use for that huge?
Don't hate me for house
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

NZBMatrix for search into SABnzbd+ on usenet (easynews) can also do torrents. Sick Beard searches for shows that you add, sends to SAB to download then sab runs a sickbeard script to post process (move and rename, download art and nfo etc) and Couch Potato for movies (also does post processing).

can login from anywhere and add shows/movies and check status. do not need to add single eps, it will search for them if you are misssing them or when a new episode comes out. alerts sent to my android and also on a twitter account.

all installed on the synology nas that runs busybox with a few extras (bzip2 par2cmdline unrar unzip zlib git python etc) cron job every hour to reindex the media share so it will show on the WDTV live.

it's amazing. 100% automated. only thing it can't do is read my mind.

pretty nerdy setup tho.
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
CoB
Posts: 2941
Joined: Sat Jan 29, 2005 6:57 pm

Re: T.V

Post by CoB »

yeh breaking bad is mad at the moment!!!
o/ . . . \o . . . -o . o- . \o/ \o/
User avatar
deviant
Posts: 18213
Joined: Mon Apr 11, 2005 6:52 pm
Location: couch
Contact:

Re: T.V

Post by deviant »

huge wrote:NZBMatrix for search into SABnzbd+ on usenet (easynews) can also do torrents. Sick Beard searches for shows that you add, sends to SAB to download then sab runs a sickbeard script to post process (move and rename, download art and nfo etc) and Couch Potato for movies (also does post processing).

can login from anywhere and add shows/movies and check status. do not need to add single eps, it will search for them if you are misssing them or when a new episode comes out. alerts sent to my android and also on a twitter account.

all installed on the synology nas that runs busybox with a few extras (bzip2 par2cmdline unrar unzip zlib git python etc) cron job every hour to reindex the media share so it will show on the WDTV live.

it's amazing. 100% automated. only thing it can't do is read my mind.

pretty nerdy setup tho.
want
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

Ooooh. Will try.

Just bought a NAS box last week.
Don't hate me for house
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

pretty easy, might need some tweaking to get it all to work properly tho. you will need to sign up for usenet service like http://www.easynews.com or http://www.astraweb.com/. i also use http://nzbmatrix.com/ for the searches.

i'll write down what i did on the synology, it runs busybox and i used ipkg to install some apps, which is the package system it uses. so these instructions might need to be altered for whatever system you run (as long as it's a linux distro!), they can also be setup on windows but you can figure that out yourself.

DISCLAIMER: melbournebeats.com does not condone the downloading of things at all. Also i am not responsible for any damage you might do to your setup.

BEGIN MASSIVE NERDERY!

just install the dependencies first:

Code: Select all

ipkg install bzip2 par2cmdline unrar unzip zlib git
(these enable automatic par and unpacking, and installs git)

Code: Select all

ipkg install py26-cheetah py26-openssl python26
(these are the python apps)

I was also missing the tr binary from coreutils so installed them:

Code: Select all

ipkg install coreutils
then you can:

Code: Select all

ipkg install sabnzbdplus
this is an older version of SAB btw. there is another one (same version) specifically for synology (which i found after installing this one) here http://www.mertymade.com/syno/#sabnzbd

you could also install the newer version straight from sourceforge. up to you tho as this version works fine!

now install sickbeard and couchpotato (install these to wherever you want, i used /opt/local on my nas)

Code: Select all

cd /opt/local
[ -d sickbeard/.git ] || git clone git://github.com/midgetspy/Sick-Beard.git sickbeard
cd sickbeard
git pull

cd /opt/local
[ -d couchpotato/.git ] || git clone git://github.com/RuudBurger/CouchPotato.git couchpotato
cd couchpotato
git pull
now they need a little bit of customising. i noted that to get the config.ini files to appear you will need to run sickbeard and couch potato at least once. they will generate a whole bunch of files.

so just type:

Code: Select all

/opt/bin/python2.6 /opt/local/couchpotato/CouchPotato.py
/opt/bin/python2.6 /opt/local/sickbeard/SickBeard.py
Also SAB could not find the par2cmdline app so i had to add /opt/bin to the PATH in /etc/rc. this is not the nicest way of fixing it but i couldn't figure out how else to do it with my limited knowledge! Just check to see if SAB complains about no PAR program when you run it before doing that tho.

Next change the default port couchpotato uses:

open the file /opt/local/couchpotato/config.ini using vi or something, look for the [global] header and change the port key to: 9300

Create a startup file to run them as daemons when the nas boots up. mine are located at /usr/syno/etc/rc.d/ but yours could be /etc/init.d.

Code: Select all

cat << EOT > /usr/syno/etc/rc.d/S99SABnzbd.sh
#!/bin/sh
if [ "start" = "\$1" ]; then
  /opt/bin/python2.6 /opt/share/SABnzbd/SABnzbd.py -f /root/.sabnzbd/sabnzbd.ini -s 0.0.0.0:9200 -d
  /opt/bin/python2.6 /opt/local/couchpotato/CouchPotato.py --config=/opt/local/couchpotato/config.ini --datadir=/volume1 -d
  /opt/bin/python2.6 /opt/local/sickbeard/SickBeard.py --quiet --port 9400 --config /opt/local/sickbeard/config.ini --datadir=/volume1 --daemon
elif [ "stop" = "\$1" ]; then
  /usr/bin/killall -9 python2.6
elif [ "restart" = "\$1" ]; then
  \$0 stop
  \$0 start
elif [ "" = "\$1" ]; then
  echo "Start, stop or restart service? Use a parameter..."
fi
EOT
Make it executable by added the x bit:

Code: Select all

chmod +x /usr/syno/etc/rc.d/S99SABnzbd.sh
And run it:

Code: Select all

/usr/syno/etc/rc.d/S99SABnzbd.sh start
Now you can connect to them via a web browser and run thru the setup for each one.

http://[your_nas_ip]:9200/ for SABnzbd
http://[your_nas_ip]:9300/ for CouchPotato
http://[your_nas_ip]:9400/ for Sickbeard

As we created the startup script, every time the nas boots SABnzbd and the others will start up as well. You can forward these ports thru your router and use a dynamic DNS service to connect to them from anywhere if you like. might need some extra security tho if you do.

to get SAB to use the sickbeard post processing script you need to add the path to SAB under Folders in the config section. which is (on mine) /opt/local/sickbeard/autoProcessTV

Image

Then, under categories section in SAB, for the TV category chose sabToSickBeard.py as the script.

Image

configure sickbeards post processing section and point it to the tv download location that SAB will put the complete TV downloads in.

Image

SickBeard can sort out your existing shows, just add them to the program, let it scan the folder and see what episodes you have, it will d/l the rest if they are missing, and you can rename the eps so they are all the same according to your settings. it will also show you coming episodes and download them as soon as it finds them. no more waiting till you get home on monday and hanging around for Breaking Bad to d/l. it will start about 1pm and be done when you get home!

Image

you need to do the same in couchpotato, it scans the completed movies folder and autoprocesses by itself so no need to add anything into SAB for this. just set the complete downloads location.

Image

/END MASSIVE NERDERY

see, nothing to it! there's also an app like the other two called https://github.com/rembo10/headphones for music!

boom.
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

Yeah i'll just get you to come over do it. Command line no thanks
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

copy paste you lazy bastard. do it EXACTLY like that and you will have it all running in 1/2 hour.
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
Lizkins
Junior Vice President
Posts: 17099
Joined: Thu Nov 25, 2004 5:09 pm
Location: Never never land

Re: T.V

Post by Lizkins »

you are so hot right now Hughbert, mmmm nerdiness
live your life like every week is shark week
click here fo fotos
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

Woah, lots of stuff.

Will have a play. I'm using an HP Microserver as my NAS (deal of the century at the moment) with OpenIndiana on it.
Don't hate me for house
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

that will work!

it really is rather easy tho. looks like a lot of stuff, but it isnt.
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
CoB
Posts: 2941
Joined: Sat Jan 29, 2005 6:57 pm

Re: T.V

Post by CoB »

whats an NAS?

ps. been watching corner gas recently
it's good
o/ . . . \o . . . -o . o- . \o/ \o/
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

huge wrote:you lazy bastard
fuck, my secret is OUT
Image
User avatar
quick
Posts: 12201
Joined: Wed Nov 24, 2004 11:38 pm
Location: who knows

Re: T.V

Post by quick »

Hardy wrote:
quick wrote:Don't you watch Breaking Bad badge?
Nah
why not? have you tried it? just watch it you bunch of sticks you!
Last edited by quick on Sun Sep 11, 2011 8:27 pm, edited 1 time in total.
I kissed a squirrel and I liked it... taste of her acorn chapstick
User avatar
deviant
Posts: 18213
Joined: Mon Apr 11, 2005 6:52 pm
Location: couch
Contact:

Re: T.V

Post by deviant »

Why do you keep saying that word lately? it's really offensive tbh
User avatar
quick
Posts: 12201
Joined: Wed Nov 24, 2004 11:38 pm
Location: who knows

Re: T.V

Post by quick »

better? :saladroll:
I kissed a squirrel and I liked it... taste of her acorn chapstick
User avatar
Hardy
Posts: 9129
Joined: Wed Dec 01, 2004 9:12 pm
Location: 7th Layer Of The Inferno

Re: T.V

Post by Hardy »

deviant wrote:Why do you keep saying that word lately? it's really offensive tbh
:scr1pt:

It is offensive. My dad was a faggot, have some consideration please.
User avatar
Kaiproject
Posts: 1191
Joined: Sun Dec 02, 2007 9:45 pm
Contact:

Re: T.V

Post by Kaiproject »

http://nymag.com/daily/entertainment/20 ... =422655496

hope wilfred s2 isn't too far off....
talk about an open ending
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

Fuckin... last episode of Entourage was totally bittersweet and a perfect ending to the show imo.

True Blood was bananas!
Image
User avatar
quick
Posts: 12201
Joined: Wed Nov 24, 2004 11:38 pm
Location: who knows

Re: T.V

Post by quick »

Hardy wrote:
deviant wrote:Why do you keep saying that word lately? it's really offensive tbh
:scr1pt:

It is offensive. My dad was a faggot, have some consideration please.
fukn LOL!!! BEST!
I kissed a squirrel and I liked it... taste of her acorn chapstick
User avatar
andy_hoffman
Posts: 2068
Joined: Mon Oct 31, 2005 2:31 pm
Location: Carlton North
Contact:

Re: T.V

Post by andy_hoffman »

Kaiproject wrote:http://nymag.com/daily/entertainment/20 ... =422655496

hope wilfred s2 isn't too far off....
talk about an open ending
Was such a good episode. Can't wait for season 2!
...................................................................................................................................................
no more epilepsy raptor jesus
User avatar
CoB
Posts: 2941
Joined: Sat Jan 29, 2005 6:57 pm

Re: T.V

Post by CoB »

needs me some entourage and breaking bad to start the week!s
o/ . . . \o . . . -o . o- . \o/ \o/
User avatar
mrj
Posts: 13377
Joined: Mon Jun 06, 2005 10:07 am
Location: the Penski file

Re: T.V

Post by mrj »

mecka wrote:Fuckin... last episode of Entourage was totally bittersweet and a perfect ending to the show imo.
No, A perfect end to the show would have been Vince getting really high on Crystal and blowing his own brains out, after which Drama loses it, kidnaps Sloan and Eric and puts them in the boot of his car and then drives himself and them head on into a car being driven by Turtle, killing all four. Mean while Ari gets a 3 way with his wife and Dana Gordon (all of which is shown) and then goes down to the office and throws LLoyd out of a 21st storey window who lands on Josh Weinsten killing both instantly.

THAT would be a perfect ending to the show.

Actually a perfect ending to the show is the fact that it is ending. It stopped being good after season 3. Maybe 4. but 5, and especially 6 and double especially 7 and 8 have been terrrible.
He's climbing in your windows, he's snatching your people up.
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

mrj wrote: Actually a perfect ending to the show is the fact that it is ending. It stopped being good after season 3. Maybe 4. but 5, and especially 6 and double especially 7 and 8 have been terrrible.
Care to quantify plz j?
User avatar
mrj
Posts: 13377
Joined: Mon Jun 06, 2005 10:07 am
Location: the Penski file

Re: T.V

Post by mrj »

mecka wrote:
mrj wrote: Actually a perfect ending to the show is the fact that it is ending. It stopped being good after season 3. Maybe 4. but 5, and especially 6 and double especially 7 and 8 have been terrrible.
Care to quantify plz j?
Sure.

The whole reason that I (and I know I'm not alone) found the show appealing is that it was male fantasy show. It was about a bunch of guys who got to work extremly infrequently but get paid heaps, and then spend the rest of the time doing what we all want to be doing, which is living lavish lifestyles with our friends having fun all the time, driving expensive cars, sleeping with numerous anonymous hotties, and basically just indulging our every whim. Vince got to have money and girls. Ari said all the things you would like to say to people. Turtle got to sit around getting wasted. Drama was just comedy relief, but rolled together it was great. Eric had, and has, no function whatsoever.

Then the script writers decided to give them problems and concerns and make their lives difficult and so it stopped being interesting. The reason is because if you take away the fantasy lifestyle element all that is left is the characters themselves (who are actually quite boring except for Ari and Drama) and the acting which is bloody terrible (again except for Ari who is brilliant). Eric and Vince are especially terrible, and especially especially Vince, he just gets worse with every season. I didn't think he could get any worse after season 7, but 8 proved me wrong.

PLUS their choices of actresses for the show was woeful, Sloan was ok but her acting in season 6 left a lot to be desired, and then turtles girlfriend in s07, and erics in s06. both massively annoying characters and terrible actresses.

So I feel it had a good run at the start but just turned to pure shite after a while.
He's climbing in your windows, he's snatching your people up.
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

Sick Beard + SANZnzdb + NZBMatrix = amaze!
Don't hate me for house
User avatar
system
let the hustlers play
Posts: 10126
Joined: Thu Nov 25, 2004 3:27 pm
Location: the leave garden

Re: T.V

Post by system »

JAMESSSS wrote:Sick Beard + SANZnzdb + NZBMatrix = amaze!
life changing stuff. :retzielikes:
DRS wrote:It’s uplifting while we drift through time,
‘cause we keep pushing the vibe.
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

anyone with a synology, this guy has done a bunch of work to get all of that above working properly

http://synoblog.superzebulon.org/
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
Brain
Posts: 1903
Joined: Wed Apr 27, 2005 12:03 pm
Location: head

Re: T.V

Post by Brain »

For all the Breaking Bad fans:

Watch the posted video on YouTube.

User avatar
Lizkins
Junior Vice President
Posts: 17099
Joined: Thu Nov 25, 2004 5:09 pm
Location: Never never land

Re: T.V

Post by Lizkins »

love it, damn he is good!
live your life like every week is shark week
click here fo fotos
mecka
Posts: 11970
Joined: Sun Jan 02, 2005 5:54 pm

Re: T.V

Post by mecka »

Jessica's boobs. That is all.
Image
User avatar
thedeadly9
Posts: 319
Joined: Fri Mar 11, 2011 1:13 pm

Re: T.V

Post by thedeadly9 »

Pinkman for President!!
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

huge wrote:anyone with a synology, this guy has done a bunch of work to get all of that above working properly

http://synoblog.superzebulon.org/
So just you then?
Don't hate me for house
User avatar
deviant
Posts: 18213
Joined: Mon Apr 11, 2005 6:52 pm
Location: couch
Contact:

Re: T.V

Post by deviant »

huge wrote:anyone with a synology, this guy has done a bunch of work to get all of that above working properly

http://synoblog.superzebulon.org/
know if this stuff would work on a FreeNAS box?
User avatar
JAMESSSS
Posts: 9844
Joined: Wed Nov 24, 2004 2:09 am

Re: T.V

Post by JAMESSSS »

Yeah it should Dan, there are tutorials available for how to do it (for embedded as well I think).
Don't hate me for house
User avatar
huge
old boy
Posts: 7368
Joined: Fri Nov 03, 2006 12:36 pm
Location: the rings around saturn
Contact:

Re: T.V

Post by huge »

will deffo work on freenas
http://www.thelittlemule.com - tredleys and caffeine
http://www.dubstep.com.au - aussie dubstep forums
User avatar
thedeadly9
Posts: 319
Joined: Fri Mar 11, 2011 1:13 pm

Re: T.V

Post by thedeadly9 »

Did anyone happen to catch "Terra Nova" last night?

I can't decide whether its my undying hard-on for anything speilberg that had me hooked and engrossed last night...or whether i just miss LOST too much.

Thoughts? Anyone? Bueller? Bueller?
User avatar
youthful_implants
Posts: 4379
Joined: Sun Jul 20, 2008 12:10 pm
Location: bracken
Contact:

Re: T.V

Post by youthful_implants »

I didn't see it but I'm up for it. Sounds cool.

Breaking Bad season 4 just got so mental ha ha ha
Strontium Music

Image

SOUNDCLOUD | FACEBOOK | TWITTER | TUMBLR
User avatar
mrj
Posts: 13377
Joined: Mon Jun 06, 2005 10:07 am
Location: the Penski file

Re: T.V

Post by mrj »

yeh breaking bad has been intense. loving it. can't friggin wait for final episode.
He's climbing in your windows, he's snatching your people up.
User avatar
Lizkins
Junior Vice President
Posts: 17099
Joined: Thu Nov 25, 2004 5:09 pm
Location: Never never land

Re: T.V

Post by Lizkins »

so many good shows coming up again soon! woot!

anyone been watching Offspring? i wish they would stop making it sad, its my happy show and i have been in tears for the last two weeks watching, bah!
live your life like every week is shark week
click here fo fotos
User avatar
CoB
Posts: 2941
Joined: Sat Jan 29, 2005 6:57 pm

Re: T.V

Post by CoB »

breaking bad apparently is back again soon
game of thrones has been a good season, though only 10episodes boo
o/ . . . \o . . . -o . o- . \o/ \o/
User avatar
Lizkins
Junior Vice President
Posts: 17099
Joined: Thu Nov 25, 2004 5:09 pm
Location: Never never land

Re: T.V

Post by Lizkins »

i still have game of thrones to d/l and watch, joy! :joy:
live your life like every week is shark week
click here fo fotos
User avatar
CoB
Posts: 2941
Joined: Sat Jan 29, 2005 6:57 pm

Re: T.V

Post by CoB »

lucky you
o/ . . . \o . . . -o . o- . \o/ \o/
Post Reply