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 | |
# for a blogpost on this, check: http://www.aktau.be/2013/09/22/detecting-interlaced-video-with-ffmpeg/ | |
# detect interlacing with the ffmpeg "idet" filter, the longer | |
# you let this run, the better, though it's never 100% accurate | |
# flags: | |
# -an = discard audio, we don't need it | |
# -f rawvideo = output raw video |
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 | |
# Filename: ezrss | |
# Version 091110 | |
# Author: robz | |
# Download trackers from "EZrss" & monitor the "Torrents/Incomplete" folder. | |
# I have "unmetered" bandwidth in the small hours but dislike leaving my PC | |
# on all the time, this script suspends & resumes the PC within that timeslot. | |
# You will need "rtcwake" from the repositories and "shutdown" may need | |
# adding to the sudoers list. | |
# In a terminal (omitting all quote marks) do "sudo visudo", at the bottom of |
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 | |
# File name: ZAVI2MPG - saved in the "nautilus-scripts" directory. | |
# Author: robz | |
# Version: 130511 | |
# This is a re-re-work of a previous script for converting .avi television | |
# files to a "burnable to DVD" format. This time though conversion statistics | |
# visual output is supplied by the Zenity dialogue. Stats logfile also added. | |
# File locations in some variables are specific to my PC check "# Vars" first. | |
# The script is called by right clicking on the ".avi file" then clicking | |
# the appropriate choice in the nautilus-scripts menu. |
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 | |
#updated ffmpeg progress indicator | |
#by Rupert Plumridge | |
#for updates visit www.prupert.co.uk | |
#Creative Commons Attribution-Non-Commercial-Share Alike 2.0 UK: England & Wales Licence | |
# Based on the ffmpegprogress bar from: http://handybashscripts.blogspot.com/2011/01/ffmpeg-with-progress-bar-re-work.html | |
# which was based on my initital progress script - circle of life and all that ;) | |
# version 2.0 | |
# 07.04.2011 | |
# now uses apparently better progress detection, based on duration of overall video and progress along the conversion |
NewerOlder