https://itunes.apple.com/de/app/macos-sierra/id1127487414?l=en&mt=12
Link: canonical Link: amphtml Close Ad Link: http://www.macworld.com * Subscribe ▲ Learn more about Macworld's Digital Edition Macworld Magazine Cover
| #!/bin/bash | |
| # requires atomicparsley ( http://atomicparsley.sourceforge.net/ ) | |
| # | |
| # installation via HomeBrew: | |
| # brew update | |
| # brew install atomicparsley | |
| # | |
| find . -name "*.m4a" -print0 | xargs -0 -n 1 -- bash -c 'atomicparsley "$0" --DeepScan --manualAtomRemove "moov.udta.meta.ilst.apID" --manualAtomRemove "moov.udta.meta.ilst.atID" --manualAtomRemove "moov.udta.meta.ilst.cnID" --manualAtomRemove "moov.udta.meta.ilst.geID" --manualAtomRemove "moov.udta.meta.ilst.plID" --manualAtomRemove "moov.udta.meta.ilst.sfID" --manualAtomRemove "moov.udta.meta.ilst.cprt" --manualAtomRemove "moov.udta.meta.ilst.flvr" --manualAtomRemove "moov.udta.meta.ilst.purd" --manualAtomRemove "moov.udta.meta.ilst.rtng" --manualAtomRemove "moov.udta.meta.ilst.soal" --manualAtomRemove "moov.udta.meta.ilst.stik" --manualAtomRemove "moov.udta.meta.ilst.xid" --manualAtomRemove "moov.udta.meta.ilst.----" --manualAtomRemove "moov.udta.meta.ilst.----" --manualAtomRemove "moov.udta.meta.ilst.----" --manualAtomRemove "moov.udta.meta.ilst.----" |
| #!/usr/bin/env ruby | |
| # usage: stripiT.rb | |
| # the original files will be OVERWRITTEN. | |
| # Script to remove extraneous/unwanted atoms from iTunes purchased files by way of AtomicParsley. | |
| # Output should be comparable to the atoms left over after reencoding the file in iTunes itself. | |
| # I only care about songs, so I have no clue how well this applies to video files | |
| # Some information taken from: https://code.google.com/p/mp4v2/wiki/iTunesMetadata |
https://itunes.apple.com/de/app/macos-sierra/id1127487414?l=en&mt=12
Link: canonical Link: amphtml Close Ad Link: http://www.macworld.com * Subscribe ▲ Learn more about Macworld's Digital Edition Macworld Magazine Cover
| #!/usr/bin/env python | |
| """ | |
| Script for dumping Bluetooth pairings from OS X to a registry file, for Windows | |
| import. This will allow you to have your Bluetooth devices paired with both | |
| operating systems at the same time. | |
| In case of problems with Windows registry entries: pair your device with Windows | |
| first, then with OS X, and then do the dump and import. | |
| Latest version can be found at: |