Search found 5 matches

by ProfDrLuigi
September 25th, 2010, 4:30 am
Forum: Post-Processing Scripts
Topic: Convert avi with Handbrake for use with iPhone/iPod
Replies: 1
Views: 2814

Convert avi with Handbrake for use with iPhone/iPod

#!/bin/bash ################## Change to Unpack-Path ################## base=`basename "$1"` cd "$1" ########################################################### ######## Pathes to the needed Binaries (change this)####### handbrakecli="/opt/local/bin/HandBrakeCLI" desti...
by ProfDrLuigi
December 29th, 2009, 8:06 am
Forum: Post-Processing Scripts
Topic: OSX: Pal-Speedup-Script from 23.976 -> 25.000. Completely automatic.
Replies: 4
Views: 5900

OSX: Pal-Speedup-Script from 23.976 -> 25.000. Completely automatic.

Hi folx. The Situation: You have a MKV-File with 23.976 FPS, 24.000 FPS or 29.970 FPS and want to convert it to PAL 25 FPS (30 FPS at a FPS of 29.970) to see the movie totaly smooth on your tv which is not supporting 24p correct. If you Speedup the Movie to 25FPS (or 30 FPS) you have the problem tha...
by ProfDrLuigi
March 8th, 2009, 8:42 am
Forum: Bug Reports
Topic: [OSX] 0.4.7 - Computer almost stops during postpro
Replies: 10
Views: 6650

Re: [OSX] 0.4.7 - Computer almost stops during postpro

The same was here. I copied the par2 binary from 0.4.6 to 0.4.7 and all is fine.
by ProfDrLuigi
January 10th, 2009, 8:39 am
Forum: Post-Processing Scripts
Topic: [REQ] unRAR Script With KNOWN Password.
Replies: 5
Views: 8659

Re: [REQ] unRAR Script With KNOWN Password.

If u have a password: For example ~pe:ß-;fvä8 9?jtt_o?9!bk*lri: which has illegal Finder Characters use this script: #!/bin/bash base=`head -n 1 kryptisches-pass.txt` cd "$1" unrar x -idp -o- -p- -p$base "*.rar" && rm *.rar *.par2 *.PAR2 *.Par2 You need a file called &quo...
by ProfDrLuigi
December 22nd, 2008, 3:10 pm
Forum: Post-Processing Scripts
Topic: [REQ] unRAR Script With KNOWN Password.
Replies: 5
Views: 8659

Re: [REQ] unRAR Script With KNOWN Password.

Try working with this: OS X / linux: (make sure to "chmod +x scriptname" to make it executable) #!/bin/bash unrar x -idp -o- -p- -p<password> $1 $1 That doesn´t work this way. I find out how to use it under OSX. #!/bin/bash base=`basename $0` cd "$1" unrar x -idp -o- -p- -p$base...