• 1 Post
  • 31 Comments
Joined 1 year ago
cake
Cake day: June 5th, 2023

help-circle
rss





  • I’ve been trying to find some good examples of how to structure the files, and whether to combine the photos from everyone or to keep them separate. Obviously there’s different systems for everyone, but your method of syncing, tagging, and displaying/sharing photos is almost identical to how I’ve been wanting to go about it.

    Do you mind sharing how you structure the photo files and naming in your Gallery directory?

    I was thinking of implementing the Copyright tag to keep the data of the original phototaker, and then combine all the photos into a Gallery/YYYY/MM structure, with the filenames being YYYYMMDD-CameraModel. There aren’t many events we go to, so albums aren’t a big priority, but on the occasion, I was thinking if using a folder like MM-Event in the respective year folder.

    I’m just putting my thoughts down because I don’t often see this part of people’s photo organizing.














  • I have several terabytes of free space on my server so I have no issue sacrificing a few gigs to have the lossy archive be portable and independent of the music software.

    It gives me the freedom to drop the lossy archive to whatever device I want (SyncThing to make it automatic and wireless) and use whatever music play I choose.

    I could, and have thought about, switching the script to use hardlinks for the MP3s which means the only storage used is for the transcoded MP3s. Plus it would get rid of the requirement to sync any updated MP3s from the original archive to the lossy one, the hardlinks would just update with the original.


  • I do something very similar. I have all my music on a network share with a playlist folder inside. I run a script that copies all the lines from an .m3u playlist file and copies them to another music folder inside my user folder, converting any FLAC files along the way.

    I then user SyncThing to synchronize that folder with my phone. Makes it super easy to get all my music and playlists when I upgrade to a new phone.

    a = *lines from playlist file*
    new = *destinationFolder*
    # If the mp3 version of the flac is older than the flac or doesn't exist in the destination,
    # convert it from Flac to variable bitrate mp3
      if [ "$a" -nt "${new[@]/%flac/mp3}" ]; then
        echo Converting $a
        ffmpeg -y -i "$a" -qscale:a 0 "${new[@]/%flac/mp3}"
      fi
    

    There's some cleaning and other steps done but I'm willing to share or provide more details if anyone is interested.