summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <nick@nv.delivery>2021-12-13 08:33:03 -0800
committerNick Van Doorn <nick@nv.delivery>2021-12-13 08:33:03 -0800
commit7538e26ee781db848db78a1206219e74e9a6674b (patch)
treeecb222aaeb3d226c77cc63cce9f85817d7534774
parentcd2671cd179996f916c9d0e746f95ae3dd8d0ecc (diff)
Don't convert images when syncing iPod
We can just ignore JPEG's and let someone else generate the BMP's we need for rockbox.
-rwxr-xr-xbin/sync-ipod7
1 files changed, 1 insertions, 6 deletions
diff --git a/bin/sync-ipod b/bin/sync-ipod
index 08e4e07..ac1330f 100755
--- a/bin/sync-ipod
+++ b/bin/sync-ipod
@@ -1,8 +1,3 @@
#!/usr/bin/env bash
-# Sync the files.
-rsync -uva --ignore-existing "/Volumes/media1/lossless" "/Volumes/NVD IPOD"
-# Convert the album art to a format Rockbox likes.
-# convert-art "/Volumes/IPOD 1/lossless"
-# Delete the originals so Rockbox doesn't try and load them.
-# rm -rf "/Volumes/IPOD 1/lossless/**/*.jpg"
+rsync -uva --ignore-existing --exclude="*.jpg" "/Volumes/media1/music" "/Volumes/NVD IPOD"