This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# converts an MKV file to PS3 format | |
# | |
# Requires avconv and HandbrakeCLI | |
# | |
# This script will attempt to convert a file with avconv (fast) | |
# and will fallback to Handbrake to encode more difficult files | |
# when encountering an error. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# It is highly recommended that you run this under a user account and not as root | |
# The LOGFILE must also be set to a directory writable by the user account | |
# Location of the log file (must be by the current user writable) | |
env LOGFILE=/home/utorrent/log/utorrent.log | |
# Path to the utorrent server | |
env UTORRENT_PATH=/home/utorrent/shared/programs/utorrent/utorrent-server-v3_0 | |
# Name of the utorrent server binary (you usually don't need to change this) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# | |
# Original source: http://forum.utorrent.com/viewtopic.php?id=88044 | |
# | |
# uTorrent start stop service script | |
# | |
# copy to /etc/init.d | |
# run "update-rc.d utorrent defaults" to install | |
# run "update-rc.d utorrent remove" to remove |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
######################################### | |
# Vortex-5's Remuxing Script based on: # | |
# EqUaTe's MKV to M2TS remuxing script # | |
# # | |
# Version: 0.5.10 # | |
# # | |
# This script takes an H.264 encoded # | |
# video, in an MKV container, demuxes # |