Skip to content
  • 0
  • 4 WHO
    • AS
    • AN
    • AP
    • DN
    • DR
    • DS
    • MS
    • SS
    • VS
  • 文化
    • AudioVideo
      • música
      • Podcast
    • idioma
      • ES
      • JP
      • RU
    • literature
    • 写真撮影
      • Adams Ansel
      • Leibovitz Annie
      • Newton Helmut
  • REF
    • PT Shortcuts

Flash News

MacOS (upto Ventura checked) QuickLook preview for .srt .vtt and other subtitle files.

brew tools – details

Make LTC SMPTE Timecode Wav file

ProTools SHORTCUTS – keyboard shortcuts search tool

Rob’s TimeCode Calculator – is AMAZING!

OSX QuickLook – fix all those broken things…

REF.sound2picutre.com

  • 0
  • 4 WHO
    • AS
    • AN
    • AP
    • DN
    • DR
    • DS
    • MS
    • SS
    • VS
  • 文化
    • AudioVideo
      • música
      • Podcast
    • idioma
      • ES
      • JP
      • RU
    • literature
    • 写真撮影
      • Adams Ansel
      • Leibovitz Annie
      • Newton Helmut
  • REF
    • PT Shortcuts
Monday, June 16, 2025

Tag: CodeSnippet

ffmpeg on OSX with hardware enabled encoding
AP DS TECH VS

ffmpeg on OSX with hardware enabled encoding

~~ September 26, 2020

Add to the standard :ffmpeg -i source destination” :: 1-c:v h264_videotoolbox Also – it is critical that the bitrate be set, otherwise the default drops quality down to 600kb/s. to … Read More

BashCodeSnippetffmpegOSXVideo
bash – awk if then else snippet
AP DS

bash – awk if then else snippet

~~ November 30, 2019

A clear example of the if/then/else structure formatting in awk. 123456789$ awk ‘ BEGIN {     FS="," ; FORMAT="%-10s%-8s%s\n" ;     {printf FORMAT,"A","B","% age"} } {     … Read More

awkBashCodeSnippetifthenLinuxOSXTerminal
bash: for – looping to repeat commands
DS TECH

bash: for – looping to repeat commands

~~ November 27, 2019

A one liner to repeat a task/process N number of times. Perform 5 times: 1for n in {1..5}; do <command>; done</command> Add a function to .bashrc / .bash_profile: 1234567function run() … Read More

BashCodeSnippetforLinuxloopOSX
bash – df to get space usage by volume
AP DS TECH

bash – df to get space usage by volume

~~ November 27, 2019

1234567891011#display current Volume in 1024-byte blocks df -k . #display ALL Volumes in megabytes df -m     #display /home Volume in gigabytes df -g /home   #display ALL Volumes … Read More

BashCodeSnippetdfLinuxOSXTerminal
bash – pass arguments with flags to script
AP DS TECH

bash – pass arguments with flags to script

~~ November 26, 2019

Pass arguments in any order, with ability to have some of the flags optional: 12345678910while getopts u:d:p:f: option do case "${option}" in u) USER=${OPTARG};; d) DATE=${OPTARG};; p) PRODUCT=${OPTARG};; f) FORMAT=${OPTARG};; … Read More

argumentsBashCodeSnippetflagsLinuxOSX
bash: for – looping over and processing files in current directory
DS TECH

bash: for – looping over and processing files in current directory

~~ November 21, 2019

A one liner to go over all the files (can filter by file type) and apply a process. The example below shows all audio files in WAV format (*.wav) to … Read More

BashCodeSnippetforLinuxloopOSX
scp to copy files
DS TECH

scp to copy files

~~ November 19, 2019

scp to PUSH 1scp source-file.txt [email protected]:/save/here scp to PULL 1scp [email protected]:/source-loc/source-file.txt destination.txt REFERENCE

BashCodeSnippetLinuxOSXscp
bash – check that script is being executed by root
DS

bash – check that script is being executed by root

~~ August 24, 2019

12345if [ $EUID -ne 0 ] then     /bin/echo $’\nThis script must be run as the root user!\n’     exit fi

BashCodeSnippetroot
bash combine pdf or other image files into pdf
DS Scripting TECH

bash combine pdf or other image files into pdf

~~ August 5, 2019

For FAST without RECOMPRESSION of PDF files, use Coherent PDF Command Line Tools Community Release *download includes a notarized OSX version of Catelina* 1cpdf one.pdf two.pdf three.pdf -o merged.pdf Using … Read More

BashCodeSnippetimagemagickImagesimg2pdfpdf
bash – wavecache.wfm removal
AP DS Scripting TECH

bash – wavecache.wfm removal

~~ July 31, 2019

Need help cleaning up the WaveCache.wfm files ProTools generates? Nuke ’em all with one line. 1locate WaveCache.wfm | while read i; do echo "REMOVING "$i""; rm "$i"; done

BashCodeSnippetProToolsrm
BASH snippet – clean up stereo pairs and sort by folder L/R boom/lav
DS Scripting TECH

BASH snippet – clean up stereo pairs and sort by folder L/R boom/lav

~~ July 18, 2019

Assuming stardard protools L/R pairs. Assuming existance of “boom” and “lav” paths. 123456789101112131415161718192021#!/bin/bash moveit(){ local channel=`echo ${filename} | cut -d . -f2` if [ "$channel" == "L" ]     … Read More

BashCodeSnippetProToolsstereo pair
BASH y/n select – on user input
DS TECH

BASH y/n select – on user input

~~ October 28, 2018

1234567echo "Do you wish to install this program?" select yn in "Yes" "No"; do case $yn in Yes ) make install; break;; No ) exit;; esac done source:stackoverflow

BashCodeSnippetTerminal

Top 5

  • UniFi_AP_woodUbiquity UniFi AP – LED Color Pattern guide October 9, 2020 (135)
  • rEFInd-logoThemes for * rEFInd * Boot Manager July 1, 2015 (121)
  • aspera-logoAspera error code 05: Insufficient permissions September 15, 2016 (99)
  • WAV_fileMake LTC SMPTE Timecode Wav file September 6, 2019 (94)
  • lockstep_iconLockstep – LTC->MTC sync without hardware interfaces September 12, 2019 (88)
Proudly powered by WordPress | Theme: FreeNews | By ThemeSpiral.com.