Ref# | Subject |
---|---|
1 | Introduction |
2 | Analog Color Television Standards |
3 | Video Fields |
4 | Field and Frame rates |
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
/* | |
* This document is provided to the public domain under the | |
* terms of the Creative Commons CC0 public domain license | |
*/ | |
How to boot Arch Linux ARM in QEMU (patched for M1) | |
Prerequisites: | |
QEMU - patched for M1 processors - patches: https://github.com/utmapp/qemu |
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 | |
# Requires Aria2, apt-get install aria2 | |
# https://www.reddit.com/r/seedboxes/comments/dp38al/bringoutyourdeadsh_scanner_for_unreferenced/ | |
# BringOutYourDead.sh | |
if [ $# -ne 2 ] | |
then | |
echo Usage: $0 Path_of_Active_Torrents Path_of_Downloads | |
exit -1 | |
fi |
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
<# | |
.SYNOPSIS | |
Probes a set or range of VLANs for an IP Address | |
.DESCRIPTION | |
Probes a set or range of VLANs to see if the port you're connected to allows traffic for that particular VLAN. | |
.PARAMETER Vlans | |
Specify a range of VLANs in Powershell range format (n..m), or a comma-delimited list. |
Ventura docs for M2 Macs in this comment: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd?permalink_comment_id=4555340#gistcomment-4555340
Old Monterey docs in this old revision: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd/32c410e3a1de73539c76fa13ea5486569c4e0c5d
Solution for Sonoma: https://gist.github.com/sghiassy/a3927405cf4ffe81242f4ecb01c382ac
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 | |
COUNTER=1 | |
SOURCE="/files/to/upload" | |
DESTINATION="remote:path" | |
JSON_LOC="/opt/sa-json" | |
while [ $COUNTER -lt 100 ]; do | |
echo Using service account sa-$COUNTER | |
/usr/bin/rclone copy -v --delete-excluded \ | |
--fast-list --checkers=32 --transfers=16 --max-transfer 500G \ | |
--stats 5s --drive-service-account-file=$JSON_LOC/sa-$COUNTER.json \ |
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 | |
# requires gcloud command line tools; go to https://cloud.google.com/sdk/docs/quickstarts to get them | |
# max 100 service accounts per project | |
# run gcloud init --console-only first and select a project | |
# | |
# Want to use these for rclone? Service Account Loadbalancing is implemented in this build: | |
# https://git.fionera.de/fionera/rclone/releases | |
KEYS_DIR=~/keys | |
for name in service{1..100}; do | |
echo $name |
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
# THIS FILE IS NO LONGER BEING MAINTAINED. FOR A MAINTAINED VERSION, PLEASE USE THE VERSION IN THE NEW REPOSITORY. | |
# Repository: https://github.com/hkamran80/blocklists | |
# New link for this file: https://raw.githubusercontent.com/hkamran80/blocklists/main/smart-tv | |
# ------ | |
# This is a blocklist to block Smart TVs sending data home. | |
# Please help to collect domains! | |
# It could be that the TV does not receive any more updates or other services no longer work. Please report such an incident. |
- Consists of two scripts: make-screens.sh for Linux bash and make-screens.cmd for Windows CMD.EXE.
- Uses ffmpeg, and montage and convert from Imagemagick package, additionally bc under Linux.
- Works pretty fast. The approach is to divide the file into N intervals, one for each picture and pick the first keyframe after the midpoint of each interval. This is done quickly with a single run of ffmpeg, given the duration of each interval.
- Known limitations: Length of the video. The shortest video I've run with success was 30 seconds, though the number of screens was limited (by the number of keyframes in the video).
Shell script to make screenshot pages from movies with ffmpeg.