iTMS Scrubber to change Apple ID associated with m4a file? 02-12-2017, 03:52 PM
#1
iTMS Scrubber uses AtomicParsley to remove associated AppleIDs from content purchased from iTunes.
I was thinking about advertisement. I don't know if you've ever restored an iPhone with hundreds of pirated songs on it before? You get a pop up for every track asking for the password of the Apple ID associated with it. For some reason a lot of mine are registered to steve@rim.jobs which is obviously trolling. However this got me thinking, if you had something like free@rapdab.com as the assigned Apple ID for all your songs, it could lead to some website hits in the future.
Is there a way to use the iTunes Scrubber framework to set the Apple ID to a custom one, rather than completely removing it?
Here is the code from the .cmd file:
I was thinking about advertisement. I don't know if you've ever restored an iPhone with hundreds of pirated songs on it before? You get a pop up for every track asking for the password of the Apple ID associated with it. For some reason a lot of mine are registered to steve@rim.jobs which is obviously trolling. However this got me thinking, if you had something like free@rapdab.com as the assigned Apple ID for all your songs, it could lead to some website hits in the future.
Is there a way to use the iTunes Scrubber framework to set the Apple ID to a custom one, rather than completely removing it?
Here is the code from the .cmd file:
Code:
@echo off
title=iTMS Scrubber 2.5
SET AP_PADDING=DEFAULT_PAD=8192:MIN_PAD=368:MAX_PAD=2097152
FOR /R %%f IN (*.m4*) DO tools\atomicparsley-utf8 "%%f" -T |find /I "pinf" >>"%%~pfTags (Before).txt"
FOR /R %%f IN (*.m4*) DO tools\atomicparsley-utf8 "%%f" -t 1 >>"%%~pfTags (Before).txt"
FOR /R %%f IN (*.m4*) DO START /W tools\atomicparsley-utf8 "%%f" --DeepScan --manualAtomRemove moov.trak.mdia.minf.stbl.stsd.mp4a.pinf --manualAtomRemove moov.trak[2].mdia.minf.stbl.stsd.avc1.pinf --manualAtomRemove moov.trak.mdia.minf.stbl.stsd.mp4a.UUID --manualAtomRemove moov.udta.meta.ilst.apID --manualAtomRemove moov.udta.meta.ilst.sfID --manualAtomRemove moov.udta.meta.ilst.ownr --manualAtomRemove moov.udta.meta.ilst.purd --manualAtomRemove moov.udta.Xtra --freefree 0 -W
FOR /R %%f IN (*.m4*) DO tools\atomicparsley-utf8 "%%f" -T |find /I "pinf" >>"%%~pfTags (After).txt"
FOR /R %%f IN (*.m4*) DO tools\atomicparsley-utf8 "%%f" -t 1 >>"%%~pfTags (After).txt"
FOR /R %%f IN (01*.m4a) DO tools\atomicparsley-utf8 "%%f" -E
FOR /R %%f IN (01*.jpg) DO ren "%%f" folder.jpg
IF Exist *.m4* GOTO :Root
EXIT
:Root
IF Not Exist *.m4a GOTO :NullPath
FOR /F "tokens=* delims= " %%a in ('dir/b/a-d/o-d *.m4a') DO SET file=%%a
If Exist folder.jpg GOTO :MakeDirs
tools\atomicparsley-utf8 "%file%" -E
FOR %%f IN (*artwork*.jpg) DO ren "%%f" folder.jpg
:MakeDirs
FOR %%f IN ("%file%") DO tools\atomicparsley-utf8 %%f -t |find "aART" >tmpfile
FOR /F "tokens=*" %%a IN (tmpfile) DO SET artist=%%a
SET artist="%artist:~22%"
IF %artist% =="~22" GOTO :PlanB
:Main
SET artist=%artist:&=^&%
SET artist=%artist::= -%
SET artist=%artist:?=%
SET artist=%artist:/= %
SET artist=%artist:\= %
FOR /F "delims=" %%F in (%artist%) DO SET artist=%%~F
SET artist=%artist:"=''%
FOR %%f IN ("%file%") DO tools\atomicparsley-utf8 %%f -t |find "©alb" >tmpfile
FOR /F "tokens=*" %%a IN (tmpfile) DO SET album=%%a
del tmpfile
SET album="%album:~23%"
SET album=%album:&=^&%
SET album=%album::= -%
SET album=%album:?=%
SET album=%album:/= %
SET album=%album:\= %
FOR /F "delims=" %%F in (%album%) DO SET album=%%~F
SET album=%album:"=''%
SET dircheck=%artist%\%album%
SET dircheck=%dircheck:~0,1%
IF %dircheck% ==\ GOTO :NullPath
md "%artist%\%album%"
move *.m4* "%artist%\%album%"
move folder.jpg "%artist%\%album%"
move Tag*.txt "%artist%\%album%"
EXIT
:NullPath
md "scrubbed files"
move *.m4* "scrubbed files"
move folder.jpg "scrubbed files"
move Tag*.txt "scrubbed files"
EXIT
:PlanB
FOR %%f IN ("%file%") DO tools\atomicparsley-utf8 %%f -t |find "©ART" >tmpfile
FOR /F "tokens=*" %%a IN (tmpfile) DO SET artist=%%a
SET artist="%artist:~23%"
GOTO :Main


![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)
![[Image: 5y8YWoS.png]](https://i.imgur.com/5y8YWoS.png)











