Skip to content

Instantly share code, notes, and snippets.

@intarstudents
Created February 6, 2013 19:40
Show Gist options
  • Save intarstudents/4725159 to your computer and use it in GitHub Desktop.
Save intarstudents/4725159 to your computer and use it in GitHub Desktop.
Delete zero sized songs from iOS Music player
echo "DELETE FROM item WHERE item_pid IN (SELECT item_pid FROM item_extra WHERE file_size = 0);
DELETE FROM item_search WHERE item_pid IN (SELECT item_pid FROM item_extra WHERE file_size = 0);
DELETE FROM item_stats WHERE item_pid IN (SELECT item_pid FROM item_extra WHERE file_size = 0);
DELETE FROM item_extra WHERE file_size = 0;" | sqlite3 /var/mobile/Media/iTunes_Control/iTunes/MediaLibrary.sqlitedb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment