Search found 85 matches

by Mar2zz
February 7th, 2011, 11:16 am
Forum: Post-Processing Scripts
Topic: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify
Replies: 7
Views: 10326

Re: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify

Normal output is this: http://pastebin.com/NyKmR1XR If you want to see what happens edit the script #!/usr/bin/env bash to #!/bin/bash -x. Post your terminal output on pastebin so I can tell where it is stuck... Start it with ./SabtoAlbum.sh "/path/to/Eminem Relapse 2009 RTT" "x"...
by Mar2zz
February 7th, 2011, 11:13 am
Forum: Post-Processing Scripts
Topic: I've written a MOVE TO MUSIC LIBRARY script..
Replies: 22
Views: 23850

Re: I've written a MOVE TO MUSIC LIBRARY script..

You should do a dryrun first (arename -d | grep -i "soundtrack\| ost \| movie score") or words like that and embed in an if-statement. If it finds that word you can execute arename -rc ~/.arenamerc-ost and create a special .arenamerc-ost with the contents of the normal one, but with your o...
by Mar2zz
February 6th, 2011, 1:26 pm
Forum: Post-Processing Scripts
Topic: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify
Replies: 7
Views: 10326

Re: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify

The installerscript also tries to install or update your python-musicbrainz2, so I am sure you'll have it on your system (otherwise it would have prompted your for confirm install or manual install. Lenny has 0.6 python-musicbrainz2, maybe that's what's the problem, I assume you are on lenny as you ...
by Mar2zz
February 6th, 2011, 3:03 am
Forum: Post-Processing Scripts
Topic: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify
Replies: 7
Views: 10326

Re: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify

hmm strange. It does: ln -s -b /dir/to/albumidentify/SabtoAlbum.sh /dir/to/postprocessing/SabtoAlbum.sh That's the normal command to create a symlink (and backup old one if one allready exists). This code is responsible for it: set_Sabpost () { ln -s -b $INSTALLDIR/$SABTOALBUM $SABPATH/$SABTOALBUM  ...
by Mar2zz
February 5th, 2011, 9:57 am
Forum: Post-Processing Scripts
Topic: [BASH] Add replaygain and rename musicfiles based on tags.
Replies: 0
Views: 1835

[BASH] Add replaygain and rename musicfiles based on tags.

This script will add Replaygain to your files (mp3, flac or ogg) then renames all files based on tags in the files self (the safe way, if tags are missing it will do not so) and move them to the folder you set in .arename.rc. As a bonus is deletes garbage from the sourcedir. If you want to do a Musi...
by Mar2zz
February 5th, 2011, 3:03 am
Forum: Post-Processing Scripts
Topic: I've written a MOVE TO MUSIC LIBRARY script..
Replies: 22
Views: 23850

Re: I've written a MOVE TO MUSIC LIBRARY script..

I gave up on this way of moving music. That deprecated message is annoying me. Found an easier way with arename (on ubuntu sudo apt-get install arename). When it doesn't find tags you can easy replace them with other values (like empty year tag with 0000). It will not move files if one of the tags i...
by Mar2zz
February 4th, 2011, 3:26 pm
Forum: Post-Processing Scripts
Topic: I've written a MOVE TO MUSIC LIBRARY script..
Replies: 22
Views: 23850

Re: I've written a MOVE TO MUSIC LIBRARY script..

Thx. Hope it will work. Improving namingscheme and stuff. so far this. working on check for empty tags now. Too bad mminfo uses a deprecated md5 thing, it spams the terminal with warnings (but it still works). Also a bummer it doesn't recognize the albumartist tag, so it alway's has to go to Various...
by Mar2zz
February 4th, 2011, 10:48 am
Forum: Post-Processing Scripts
Topic: I've written a MOVE TO MUSIC LIBRARY script..
Replies: 22
Views: 23850

Re: I've written a MOVE TO MUSIC LIBRARY script..

I like this script. Are you fine with it if I use it and expand it? (also with replaygaining things and stuff)
by Mar2zz
February 4th, 2011, 9:30 am
Forum: Post-Processing Scripts
Topic: [Linux] Cleanup-script (Bash)
Replies: 7
Views: 10393

Re: [Linux] Cleanup-script (Bash)

When you make functions of it it's easier to add it to other postprocessingscripts in bash. Use for file in list do action done makes this easier to edit. example: Cleanup () { #### Remove unwanted files GARBAGE=".nfo .srr .sfv .nzb .jpg" #### Add or remove extensions here for junk in $GAR...
by Mar2zz
February 4th, 2011, 8:55 am
Forum: Post-Processing Scripts
Topic: [BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify
Replies: 7
Views: 10326

[BASH] Sab to Periscope, Sab to Periscope to Sickbeard, Sab to Albumidentify

I've written an installscript that can do the following: Install Couchpotato Install Sickbeard Install Periscope + postprocessingscripts + cronjob-processing + manual processing Install AlbumIdentify + postprocessingscripts + manual processing I named it LaSi, short for Lazy admin Scripted Installer...