Finished TV and Movie Automation in a Virtual Machine

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
thebearnecessit Offline
Fan
Posts: 615
Joined: Jan 2012
Reputation: 3
Post: #101
Thought I'd post this useful link just in case anyone is reading this thread and might find it useful, because it's on the same subject: http://lifehacker.com/5475649/set-up-a-f...ia-center.

Credit to the OP because that's a really annoying problem you have tackled and you've put a lot of work into it.

Personally I used the lifehacker article because I found it first ( I only found this thread as i was almost finished following lifehacker instructions).

NB I didn't use the Ember Media Manager to scrape (fanart, synopsis, dvd covers etc) because I couldn't get it installed. So I just followed the rest of the instructions and xbmc does my scraping. I only watch a tiny handful of tv series so i dont really need a dedicated sraper programme.
find quote
ijoshea Offline
Junior Member
Posts: 6
Joined: Sep 2011
Reputation: 0
Post: #102
Thanks for the guide. I've been looking to add email notifications to my set up for a while!

Are you still using the same Python Script for parsing the file name for your TV Shows?

I've made a small update which removes the full stops from the file name and replaces it with a space. I find this is makes the email notification a bit tidier.

Code:
from os import path
fp = eg.event.payload[0]
head, tail = path.split(fp)
name, ext = path.splitext(tail)
eg.result  = "New Episode of %s" % name
eg.globals.testVar = eg.result.replace (".", " ")
(This post was last modified: 2012-12-11 22:09 by ijoshea.)
find quote
Flook Offline
Member
Posts: 90
Joined: Jul 2006
Reputation: 5
Post: #103
Thanks ijoshea. I'll try that out.

I'm still using the same setup and I love it. I just wish lifehacker would update their belvedere app more frequently. For the most part everything works great but when I do run into a hiccup it is due to issues in belvedere. Pretty buggy guy.

I'm running with Android now on my Galaxy Note 2 (Love this phone) and there are a couple apps that work great with everything.

1. Yaste Remote - great XBMC remote and widget. I get a call and my movie pauses. Notifications can even pop up in XBMC.
2. Remote Launcher - use it to launch any program on my HTPC from my phone, including XBMC. Can link it with tasker and have your HTPC wake up and launch XBMC when you walk in the door of your home. Too cool.

HTPC Specs:
95w 3 core AMD Phenom 8750 2.4GHz / MSI Media Live Diva 5.1 (MS-7411) Motherboard / On-board ATI Radeon HD3200 / On-board preamp 5.1 sound card / 4 x 1 terabyte sata segate 7200.12 / 8GB SDRAM / CORSAIR CMPSU-450VX 450W / SILVERSTONE Media Center HTPC Case / 1080p 42" Dynex LCD \ 5.1 Polk Audio Surround Sound - RM6750

Details of my fully automated, virtual Windows 7, HTPC setup here
(This post was last modified: 2013-01-21 07:01 by Flook.)
find quote
Post Reply