OSX

Convert mov to wav

#!/bin/bash

shopt -s nocaseglob nullglob  # Enable case-insensitive matching and skip loop if no match

for file in *.mov; do
  echo "Converting: $file"
  ffmpeg -i "$file" -vn -acodec pcm_s16le "${file%.*}.wav"
done

Device Enrollment notification

move

/System/Library/LaunchAgents/com.apple.ManagedClientAgent.enrollagent.plist
/System/Library/LaunchDaemons/com.apple.ManagedClient.enroll.plist

to
/Library/LaunchAgentsDisabled and /Library/LaunchDaemonsDisabled

Tags: 
Subscribe to RSS - OSX