Search found 61 matches

by th3joker
December 18th, 2010, 4:04 pm
Forum: Post-Processing Scripts
Topic: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes
Replies: 29
Views: 32576

Re: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes

I 'm using a mkv2m4v type script so I can have itunes and Xbox 360 compatibilty I would like to use your scraping and tagging portion.  Currently I do everything by hand after I have the file on the hard disk. sonicman Go ahead and grab it, I would like to incorporate your mkv2mv4 as most of my TV ...
by th3joker
December 16th, 2010, 4:11 am
Forum: Post-Processing Scripts
Topic: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes
Replies: 29
Views: 32576

Re: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes

sonicman wrote: Great idea I like it.  Are you still around?


sonicman
Yup still lurking :-)
by th3joker
December 15th, 2010, 5:22 pm
Forum: Post-Processing Scripts
Topic: Question - Post processing passed to different system which is off at night.
Replies: 0
Views: 1252

Question - Post processing passed to different system which is off at night.

I use a low powered system to download 24/7 and would like to pass post processing to another system. That in itself isn't a problem, but the system with the beefy CPU is switched off to conserve energy throughout the night. So jobs being sent through the night would fail. I would assume that quite ...
by th3joker
November 7th, 2010, 4:57 pm
Forum: Post-Processing Scripts
Topic: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes
Replies: 29
Views: 32576

Re: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes

I currently run this on Ubuntu 10.04 server, though it will run on any Linux or Mac OSX system.

Would people like a guide to installing this and the other apps or maybe even an automated script which would download and install it all for you?
by th3joker
November 7th, 2010, 4:54 pm
Forum: Post-Processing Scripts
Topic: Convert avi with Handbrake for use with iPhone/iPod
Replies: 1
Views: 2784

Re: Convert avi with Handbrake for use with iPhone/iPod

posted in wrong thread sorry :-)
by th3joker
October 14th, 2010, 1:44 pm
Forum: Post-Processing Scripts
Topic: Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes
Replies: 29
Views: 32576

Convert to iPad/iPod/iPhone/AppTV add Artwork & Tag Automatically for iTunes

This script is a mash up of other scripts I found on here. It will convert your TV Shows for use in iTunes using Handbrake, there's a variable for which format, I have it set to iPad but you can change that to any of the Handbrake presets whithin the scripts (Apple TV, iPod, iPhone etc..). The origi...
by th3joker
July 31st, 2010, 9:51 am
Forum: Post-Processing Scripts
Topic: Anime TheTVDB Rename Script
Replies: 18
Views: 37156

Re: Anime TheTVDB Rename Script

How would you modify the code to rename an episode like this:

From=

TVSeries - 1x01 - 720p HDTV x264 CTU.mkv

To=

TVSeries - 1x01 - Episode Name.mkv

Is that possible?
by th3joker
July 18th, 2010, 1:01 pm
Forum: Debian/Ubuntu Package
Topic: Ubuntu apt update
Replies: 0
Views: 1850

Ubuntu apt update

Is the apt source likely to be updated, I'm getting some strange renaming errors where it's attaching season numbers to things that aren't TV episodes.

It's still at 0.5.3rc1 and I think that was updated on June 27th.

Or does someone know how to manually update from that to the new one.
by th3joker
July 1st, 2010, 12:33 pm
Forum: Debian/Ubuntu Package
Topic: (Unofficial) Ubuntu repository for SABnzbd+
Replies: 195
Views: 723324

Re: (Unofficial) Ubuntu repository for SABnzbd+

Will the new version be added to the repository so we can update.

I'm getting some strange renaming errors where it's adding tv series info to non tv items.
by th3joker
March 3rd, 2009, 12:59 pm
Forum: Post-Processing Scripts
Topic: Media Processing Script
Replies: 37
Views: 51759

Re: Media Processing Script

When it renames the Movies it also removes the year that is sometimes part of the original folder name, is there an easy way to stop it doing that.
by th3joker
March 2nd, 2009, 8:30 pm
Forum: Post-Processing Scripts
Topic: Media Processing Script
Replies: 37
Views: 51759

Re: Media Processing Script

How would I add into the TV part to also convert .mkv files into iPhone compliant files and keep the original .mkv as well.
by th3joker
January 11th, 2009, 9:04 am
Forum: General Help
Topic: Any way to see which RSS feed matched a certain file?
Replies: 6
Views: 3908

RSS Feeds Corrupted on FreeNAS (FreeBSD)

I have some RSS feeds setup to download TV episodes as they come on. 3 of them have become corrupted? and downloaded several hundred unrelated items. I at first suspected one of the kids had pushed loads of buttons, but when I checked the RSS feed using preview it showed all the historical .nzb file...
by th3joker
September 29th, 2008, 10:29 am
Forum: Post-Processing Scripts
Topic: Script errors out - No such file or directory - Sab running on FreeNAS server
Replies: 7
Views: 8493

Re: Script errors out - No such file or directory - Sab running on FreeNAS server

It was a really bizarre problem and caused by the FreeNAS build not picking up the path to bash properly. I moved bash into /usr/bin in the end. FreeNAS uses a really small install (32MB) of FreeBSD and as such has restrictions on what will run and how it runs it. The script then produced a du error...
by th3joker
September 25th, 2008, 3:38 pm
Forum: Post-Processing Scripts
Topic: Media Processing Script
Replies: 37
Views: 51759

Re: Media Processing Script

Fixed it I think. I change line 812 of postproc.sh from: MEDIATYPE=`du -aS | sort -nr | sed -n '2p' | awk -F. '{print $NF}'` to MEDIATYPE=`du -a | sort -nr | sed -n '2p' | awk -F. '{print $NF}'` Now it's working again, it's such a great script too. It seemed that du on Ubuntu accepted the du -S but ...