User Tools

Site Tools


config:beets

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
config:beets [2024/09/25 13:02] Wuffconfig:beets [2025/11/23 12:06] (current) Wuff
Line 18: Line 18:
 pip install https://github.com/ocelma/python-itunes/archive/master.zip pip install https://github.com/ocelma/python-itunes/archive/master.zip
 pip install discogs-client pip install discogs-client
-pip install beets-web-import 
 pip install python3-discogs-client pip install python3-discogs-client
 # see notes below to patch copyartifacts # see notes below to patch copyartifacts
Line 30: Line 29:
 sudo apt-get install python3-acoustid libchromaprint1 mp3val flac sudo apt-get install python3-acoustid libchromaprint1 mp3val flac
 pipx install beets pipx install beets
-pipx inject beets flask=2.2.5 discogs_client requests pylast pyacoustid pycairo pygobject python3-discogs-client discogs-client beets-copyartifacts beets-extrafiles +pipx inject beets discogs_client requests pylast pyacoustid pycairo pygobject python3-discogs-client discogs-client beets-copyartifacts beets-extrafiles 
-pipx inject beets beets-yearfixer beets-web-import+pipx inject beets beets-yearfixer
 pipx inject beets git+https://github.com/edgars-supe/beets-importreplace.git pipx inject beets git+https://github.com/edgars-supe/beets-importreplace.git
 +#for lyrics plugin:
 +pipx inject beets langdetect bs4
  
 </code> </code>
Line 45: Line 46:
 pip uninstall beets pip uninstall beets
 pip install https://github.com/beetbox/beets/tarball/master pip install https://github.com/beetbox/beets/tarball/master
 +</code>
 +
 +Uninstall plugins from pipx:
 +<code>
 +Show all pipx envs and injected packages to find exact package names
 +pipx list --include-injected
 +
 +then run:
 +pipx uninject beets beets-web-import
 +</code>
 +
 +====== shell completion ======
 +add to .bashrc or similar:
 +<code>
 +eval "$(beet completion)"
 </code> </code>
  
Line 50: Line 66:
 <code> <code>
 2to3-2.7 -w ~/.local/lib/python3.10/site-packages/beetsplug/copyartifacts.py 2to3-2.7 -w ~/.local/lib/python3.10/site-packages/beetsplug/copyartifacts.py
 +
 +#Mint22:
 +sudo apt-get install 2to3
 +2to3 -w ~/.local//share/pipx/venvs/beets/lib/python3.12/site-packages/beetsplug/copyartifacts.py
 </code> </code>
 then adjust as following: then adjust as following:
Line 247: Line 267:
  
 # files matching these patterns are deleted from source after import # files matching these patterns are deleted from source after import
-clutter: ["Thumbs.DB", ".DS_Store", "desktop.ini", "*.m3u", "*.nfo", "*.pls", "*.torrent"]+clutter: ["Thumbs.DB", ".DS_Store", "desktop.ini", "*.m3u", "*.nfo", "*.pls", "*.torrent", "cover.jpg"]
 # files/directories matching one of these patterns are ignored during import # files/directories matching one of these patterns are ignored during import
 ignore: [".*", "*~", "System Volume Information", "lost+found", "cover.jpg"] ignore: [".*", "*~", "System Volume Information", "lost+found", "cover.jpg"]
Line 291: Line 311:
   track: []   track: []
  
-plugins: [fetchart,lyrics,lastgenre,embedart,bucket,the,chroma,ftintitle,discogs,scrub,inline,fromfilename,edit,importadded,duplicates,replaygain,web,bpd,webimport,yearfixer,zero,badfiles,importreplace]+plugins: [fetchart,lyrics,lastgenre,embedart,bucket,the,chroma,ftintitle,discogs,scrub,inline,fromfilename,edit,importadded,duplicates,replaygain,bpd,yearfixer,zero,badfiles,importreplace]
 #copyartifacts broken #copyartifacts broken
 pluginpath: [] pluginpath: []
Line 471: Line 491:
     #Note this takes about 10 seconds for 7 files which is about 6h for 15k songs.     #Note this takes about 10 seconds for 7 files which is about 6h for 15k songs.
        
-web: 
-    host: 0.0.0.0 
-    port: 8337 
- 
-webimport: 
-    host: 0.0.0.0 
-    port: 8338 
- 
 bpd: bpd:
     host: 127.0.0.1     host: 127.0.0.1
Line 542: Line 554:
 beet import -A -C -W -I -s /media/music/beets2/Non-Album/ beet import -A -C -W -I -s /media/music/beets2/Non-Album/
 </code> </code>
 +Update id3 tags after changing db 
 +<code> 
 +beet write 
 +</code>
 ====== Addons ====== ====== Addons ======
  
Line 549: Line 564:
 https://amp.reddit.com/r/airsonic/comments/f1yb86/beets_plugin_for_trigger_library_update/ https://amp.reddit.com/r/airsonic/comments/f1yb86/beets_plugin_for_trigger_library_update/
  
-Web Import: 
-<code> 
-pip install beets-webimport 
-</code> 
-~/.local/lib/python3.10/site-packages/beetsplug/webimport 
  
 ====== Submit album to MusicBrainz ====== ====== Submit album to MusicBrainz ======
Line 571: Line 581:
   - Submit the edit.   - Submit the edit.
 After a few moments, try re-tagging the album with beets. If everything worked properly, beets should find the release you contributed and finish tagging it. Repeat this process for any albums you wish to add to MusicBrainz. After a few moments, try re-tagging the album with beets. If everything worked properly, beets should find the release you contributed and finish tagging it. Repeat this process for any albums you wish to add to MusicBrainz.
- 
- 
-====== beets web ====== 
- 
-depends on flask 
-<code> 
-pip install flask 
-</code> 
- 
-add web to plugins in beets config.yaml 
-Define port in [web] section 
-<code> 
-[web] 
-host: 127.0.0.1 #or 0.0.0.0 
-port: 8337 
-</code> 
- 
-for a remote web interface, CORS is required 
-<code> 
-pip install flask-cors 
-</code> 
- 
-start server on localhost:8337 using 
-<code> 
-beet web 
-</code> 
-or 
-<code> 
-beet web hostname port 
-</code> 
- 
- 
-https://github.com/irskep/summertunes 
  
  
Line 655: Line 632:
 ====== Puddletag ====== ====== Puddletag ======
 ID3 Tag editor with embed cover support ID3 Tag editor with embed cover support
 +
 +https://docs.puddletag.net/index.html
 +
 <code> <code>
-sudo add-apt-repository ppa:ubuntuhandbook1/apps 
-sudo apt-get update 
 sudo apt-get install puddletag sudo apt-get install puddletag
 </code> </code>
config/beets.1727265746.txt.gz · Last modified: by Wuff