Beets Documentation Release 1.4.7

Total Page:16

File Type:pdf, Size:1020Kb

Beets Documentation Release 1.4.7 beets Documentation Release 1.4.7 Adrian Sampson May 29, 2018 Contents 1 Contents 3 1.1 Guides..................................................3 1.2 Reference................................................. 13 1.3 Plugins.................................................. 42 1.4 FAQ.................................................... 103 1.5 For Developers.............................................. 108 1.6 Changelog................................................ 123 i ii beets Documentation, Release 1.4.7 Welcome to the documentation for beets, the media library management system for obsessive-compulsive music geeks. If you’re new to beets, begin with the Getting Started guide. That guide walks you through installing beets, setting it up how you like it, and starting to build your music library. Then you can get a more detailed look at beets’ features in the Command-Line Interface and Configuration references. You might also be interested in exploring the plugins. If you still need help, your can drop by the #beets IRC channel on Freenode, drop by the discussion board, send email to the mailing list, or file a bug in the issue tracker. Please let us know where you think this documentation can be improved. Contents 1 beets Documentation, Release 1.4.7 2 Contents CHAPTER 1 Contents 1.1 Guides This section contains a couple of walkthroughs that will help you get familiar with beets. If you’re new to beets, you’ll want to begin with the Getting Started guide. 1.1.1 Getting Started Welcome to beets! This guide will help you begin using it to make your music collection better. Installing You will need Python. Beets works on Python 2.7 and Python 3.4 or later. • macOS v10.7 (Lion) and later include Python 2.7 out of the box. You can opt for Python 3 by installing it via Homebrew: brew install python3 • On Debian or Ubuntu, depending on the version, beets is available as an official package (Debian details, Ubuntu details), so try typing: apt-get install beets. But the version in the repositories might lag behind, so make sure you read the right version of these docs. If you want the latest version, you can get everything you need to install with pip as described below by running: apt-get install python-dev python-pip • On Arch Linux, beets is in [community], so just run pacman -S beets. (There’s also a bleeding-edge dev package in the AUR, which will probably set your computer on fire.) • For Gentoo Linux, beets is in Portage as media-sound/beets. Just run emerge beets to install. There are several USE flags available for optional plugin dependencies. • On FreeBSD, there’s a beets port at audio/beets. • On OpenBSD, beets can be installed with pkg_add beets. • For Slackware, there’s a SlackBuild available. 3 beets Documentation, Release 1.4.7 • On Fedora 22 or later, there is a DNF package (or three): $ sudo dnf install beets beets-plugins beets-doc • On Solus, run eopkg install beets. • On NixOS, run nix-env -i beets. If you have pip, just say pip install beets (you might need sudo in front of that). To install without pip, download beets from its PyPI page and run python setup.py install in the directory therein. The best way to upgrade beets to a new version is by running pip install -U beets. You may want to follow @b33ts on Twitter to hear about progress on new versions. Installing on macOS 10.11 and Higher Starting with version 10.11 (El Capitan), macOS has a new security feature called System Integrity Protection (SIP) that prevents you from modifying some parts of the system. This means that some pip commands may fail with a permissions error, even when you use sudo. (You probably won’t run into this if you’ve installed Python yourself with Homebrew or otherwise.) If this happens, you can install beets for the current user only (sans sudo) by typing pip install --user beets. If you do that, you might want to add ~/Library/Python/3.6/bin to your $PATH. Installing on Windows Installing beets on Windows can be tricky. Following these steps might help you get it right: 1. If you don’t have it, install Python (you want Python 3.6). The installer should give you the option to “add Python to PATH.” Check this box. If you do that, you can skip the next step. 2. If you haven’t done so already, set your PATH environment variable to include Python and its scripts. To do so, you have to get the “Properties” window for “My Computer”, then choose the “Advanced” tab, then hit the “Environment Variables” button, and then look for the PATH variable in the table. Add the following to the end of the variable’s value: ;C:\Python36;C:\Python36\Scripts. You may need to adjust these paths to point to your Python installation. 3. Now install beets by running: pip install beets 4. You’re all set! Type beet at the command prompt to make sure everything’s in order. Windows users may also want to install a context menu item for importing files into beets. Download the beets.reg file and open it in a text file to make sure the paths to Python match your system. Then double-click the file add the necessary keys to your registry. You can then right-click a directory and choose “Import with beets”. Because I don’t use Windows myself, I may have missed something. If you have trouble or you have more detail to contribute here, please direct it to the mailing list. Configuring You’ll want to set a few basic options before you start using beets. The configuration is stored in a text file. You can show its location by running beet config -p, though it may not exist yet. Run beet config -e to edit the configuration in your favorite text editor. The file will start out empty, but here’s good place to start: 4 Chapter 1. Contents beets Documentation, Release 1.4.7 directory:~/music library:~/data/musiclibrary.db Change that first path to a directory where you’d like to keep your music. Then, for library, choose a good place to keep a database file that keeps an index of your music. (The config’s format is YAML. You’ll want to configure your text editor to use spaces, not real tabs, for indentation. Also, ~ means your home directory in these paths, even on Windows.) The default configuration assumes you want to start a new organized music folder (that directory above) and that you’ll copy cleaned-up music into that empty folder using beets’ import command (see below). But you can configure beets to behave many other ways: • Start with a new empty directory, but move new music in instead of copying it (saving disk space). Put this in your config file: import: move: yes • Keep your current directory structure; importing should never move or copy files but instead just correct the tags on music. Put the line copy: no under the import: heading in your config file to disable any copying or renaming. Make sure to point directory at the place where your music is currently stored. • Keep your current directory structure and do not correct files’ tags: leave files completely unmodified on your disk. (Corrected tags will still be stored in beets’ database, and you can use them to do renaming or tag changes later.) Put this in your config file: import: copy: no write: no to disable renaming and tag-writing. There are approximately six million other configuration options you can set here, including the directory and file naming scheme. See Configuration for a full reference. Importing Your Library The next step is to import your music files into the beets library database. Because this can involve modifying files and moving them around, data loss is always a possibility, so now would be a good time to make sure you have a recent backup of all your music. We’ll wait. There are two good ways to bring your existing library into beets. You can either: (a) quickly bring all your files with all their current metadata into beets’ database, or (b) use beets’ highly-refined autotagger to find canonical metadata for every album you import. Option (a) is really fast, but option (b) makes sure all your songs’ tags are exactly right from the get-go. The point about speed bears repeating: using the autotagger on a large library can take a very long time, and it’s an interactive process. So set aside a good chunk of time if you’re going to go that route. For more on the interactive tagging process, see Using the Auto-Tagger. If you’ve got time and want to tag all your music right once and for all, do this: $ beet import /path/to/my/music (Note that by default, this command will copy music into the directory you specified above. If you want to use your current directory structure, set the import.copy config option.) To take the fast, un-autotagged path, just say: $ beet import -A /my/huge/mp3/library 1.1. Guides 5 beets Documentation, Release 1.4.7 Note that you just need to add -A for “don’t autotag”. Adding More Music If you’ve ripped or. otherwise obtained some new music, you can add it with the beet import command, the same way you imported your library. Like so: $ beet import ~/some_great_album This will attempt to autotag the new album (interactively) and add it to your library. There are, of course, more options for this command—just type beet help import to see what’s available.
Recommended publications
  • The Kid3 Handbook
    The Kid3 Handbook Software development: Urs Fleisch The Kid3 Handbook 2 Contents 1 Introduction 11 2 Using Kid3 12 2.1 Kid3 features . 12 2.2 Example Usage . 12 3 Command Reference 14 3.1 The GUI Elements . 14 3.1.1 File List . 14 3.1.2 Edit Playlist . 15 3.1.3 Folder List . 15 3.1.4 File . 16 3.1.5 Tag 1 . 17 3.1.6 Tag 2 . 18 3.1.7 Tag 3 . 18 3.1.8 Frame List . 18 3.1.9 Synchronized Lyrics and Event Timing Codes . 21 3.2 The File Menu . 22 3.3 The Edit Menu . 28 3.4 The Tools Menu . 29 3.5 The Settings Menu . 32 3.6 The Help Menu . 37 4 kid3-cli 38 4.1 Commands . 38 4.1.1 Help . 38 4.1.2 Timeout . 38 4.1.3 Quit application . 38 4.1.4 Change folder . 38 4.1.5 Print the filename of the current folder . 39 4.1.6 Folder list . 39 4.1.7 Save the changed files . 39 4.1.8 Select file . 39 4.1.9 Select tag . 40 The Kid3 Handbook 4.1.10 Get tag frame . 40 4.1.11 Set tag frame . 40 4.1.12 Revert . 41 4.1.13 Import from file . 41 4.1.14 Automatic import . 41 4.1.15 Download album cover artwork . 42 4.1.16 Export to file . 42 4.1.17 Create playlist . 42 4.1.18 Apply filename format . 42 4.1.19 Apply tag format .
    [Show full text]
  • Songkong for Melco
    Digital Music Metadata SongKong Music Tagger Automatically managing your music metadata Digitized Music Library - Problems • Different mechanisms used to rip or download music • Music stored in different audio formats • Music collections much larger than before • Quality of original metadata varies considerably • No comprehensive metadata standard • Manually adding metadata very time consuming • Impossible to keep metadata consistent as add to collection SongKong - Concept • Should be possible to automatch and add metadata for majority of music collection easily • Need to apply consistency over collection, and keep consistent • Fix metadata within files so customer not tied to a particular music player (iTunes/Roon, Naim Wav Metadata) • Need rich comprehensive metadata, simple album/artist/title not enough • But need to give customer enough control because there is no such thing as a single one-fit metadata solution • Music collections are valuable and personal so we need • An audit of what has changed • Ability to undo changes if we don’t like them SongKong Music Tagger Installation • Available for: • Windows • MacOS • Linux • Synology Disk Station • Qnap Nas • Melco N1 Audio Server • Desktop and Remote interface for Windows/MacOS, Linux Desktop • Remote Web Interface for others so can be controlled from web browser even on iPad or phone Three steps to Improved Metadata 1. Select your Music folder and Run Fix Songs task. 2. Review the Options, then press Start 3. Wait for completion, detailed report shows exactly what has changed 1. Select your Music folder and Run Fix Songs task 2. Review any Options, e.g Basic Options Format Options (Desktop view) Classical Options (Web Browser View) .
    [Show full text]
  • Release 3.5.3
    Ex Falso / Quod Libet Release 3.5.3 February 02, 2016 Contents 1 Table of Contents 3 i ii Ex Falso / Quod Libet, Release 3.5.3 Note: There exists a newer version of this page and the content below may be outdated. See https://quodlibet.readthedocs.org/en/latest for the latest documentation. Quod Libet is a GTK+-based audio player written in Python, using the Mutagen tagging library. It’s designed around the idea that you know how to organize your music better than we do. It lets you make playlists based on regular expressions (don’t worry, regular searches work too). It lets you display and edit any tags you want in the file, for all the file formats it supports. Unlike some, Quod Libet will scale to libraries with tens of thousands of songs. It also supports most of the features you’d expect from a modern media player: Unicode support, advanced tag editing, Replay Gain, podcasts & Internet radio, album art support and all major audio formats - see the screenshots. Ex Falso is a program that uses the same tag editing back-end as Quod Libet, but isn’t connected to an audio player. If you’re perfectly happy with your favorite player and just want something that can handle tagging, Ex Falso is for you. Contents 1 Ex Falso / Quod Libet, Release 3.5.3 2 Contents CHAPTER 1 Table of Contents Note: There exists a newer version of this page and the content below may be outdated. See https://quodlibet.readthedocs.org/en/latest for the latest documentation.
    [Show full text]
  • Popular Music, Stars and Stardom
    POPULAR MUSIC, STARS AND STARDOM POPULAR MUSIC, STARS AND STARDOM EDITED BY STEPHEN LOY, JULIE RICKWOOD AND SAMANTHA BENNETT Published by ANU Press The Australian National University Acton ACT 2601, Australia Email: [email protected] Available to download for free at press.anu.edu.au A catalogue record for this book is available from the National Library of Australia ISBN (print): 9781760462123 ISBN (online): 9781760462130 WorldCat (print): 1039732304 WorldCat (online): 1039731982 DOI: 10.22459/PMSS.06.2018 This title is published under a Creative Commons Attribution-NonCommercial- NoDerivatives 4.0 International (CC BY-NC-ND 4.0). The full licence terms are available at creativecommons.org/licenses/by-nc-nd/4.0/legalcode Cover design by Fiona Edge and layout by ANU Press This edition © 2018 ANU Press All chapters in this collection have been subjected to a double-blind peer-review process, as well as further reviewing at manuscript stage. Contents Acknowledgements . vii Contributors . ix 1 . Popular Music, Stars and Stardom: Definitions, Discourses, Interpretations . 1 Stephen Loy, Julie Rickwood and Samantha Bennett 2 . Interstellar Songwriting: What Propels a Song Beyond Escape Velocity? . 21 Clive Harrison 3 . A Good Black Music Story? Black American Stars in Australian Musical Entertainment Before ‘Jazz’ . 37 John Whiteoak 4 . ‘You’re Messin’ Up My Mind’: Why Judy Jacques Avoided the Path of the Pop Diva . 55 Robin Ryan 5 . Wendy Saddington: Beyond an ‘Underground Icon’ . 73 Julie Rickwood 6 . Unsung Heroes: Recreating the Ensemble Dynamic of Motown’s Funk Brothers . 95 Vincent Perry 7 . When Divas and Rock Stars Collide: Interpreting Freddie Mercury and Montserrat Caballé’s Barcelona .
    [Show full text]
  • European Journal of American Studies, 12-4
    European journal of American studies 12-4 | 2017 Special Issue: Sound and Vision: Intermediality and American Music Electronic version URL: https://journals.openedition.org/ejas/12383 DOI: 10.4000/ejas.12383 ISSN: 1991-9336 Publisher European Association for American Studies Electronic reference European journal of American studies, 12-4 | 2017, “Special Issue: Sound and Vision: Intermediality and American Music” [Online], Online since 22 December 2017, connection on 08 July 2021. URL: https:// journals.openedition.org/ejas/12383; DOI: https://doi.org/10.4000/ejas.12383 This text was automatically generated on 8 July 2021. European Journal of American studies 1 TABLE OF CONTENTS Introduction. Sound and Vision: Intermediality and American Music Frank Mehring and Eric Redling Looking Hip on the Square: Jazz, Cover Art, and the Rise of Creativity Johannes Voelz Jazz Between the Lines: Sound Notation, Dances, and Stereotypes in Hergé’s Early Tintin Comics Lukas Etter The Power of Conformity: Music, Sound, and Vision in Back to the Future Marc Priewe Sound, Vision, and Embodied Performativity in Beyoncé Knowles’ Visual Album Lemonade (2016) Johanna Hartmann “Talking ’Bout My Generation”: Visual History Interviews—A Practitioner’s Report Wolfgang Lorenz European journal of American studies, 12-4 | 2017 2 Introduction. Sound and Vision: Intermediality and American Music Frank Mehring and Eric Redling 1 The medium of music represents a pioneering force of crossing boundaries on cultural, ethnic, racial, and national levels. Critics such as Wilfried Raussert and Reinhold Wagnleitner argue that music more than any other medium travels easily across borders, language barriers, and creates new cultural contact zones (Raussert 1).
    [Show full text]
  • Transferring Old Records & Tapes Onto CD / Hard Disk What Is Sound?
    Transferring Old Records & Tapes onto CD / Hard Disk What is sound? Sounds are pressure waves of air. If there wasn't any air, we wouldn't be able to hear sounds. There's no sound in space. We hear sounds because our ears are sensitive to these pressure waves. Perhaps the easiest type of sound wave to understand is a short, sudden event like a clap. When you clap your hands, the air that was between your hands is pushed aside. This increases the air pressure in the space near your hands, because more air molecules are temporarily compressed into less space. The high pressure pushes the air molecules outwards in all directions at the speed of sound, which is about 340 meters per second. When the pressure wave reaches your ear, it pushes on your eardrum slightly, causing you to hear the clap. When you ring a bell, after the initial strike (which is a little like a hand clap), the sound comes from the vibration of the bell. While the bell is still ringing, it vibrates at a particular frequency, depending on the size and shape of the bell, and this causes the nearby air to vibrate with the same frequency. This causes pressure waves of air to travel outwards from the bell, again at the speed of sound. ! ! Transferring Old Records & Tapes onto CD / Hard Disk How is sound recorded? A microphone consists of a small membrane that is free to vibrate, along with a mechanism that translates movements of the membrane into electrical signals. (The exact electrical mechanism varies depending on the type of microphone.) So acoustical waves are translated into electrical waves by the microphone.
    [Show full text]
  • Best Place to Buy Vinyl Records Online
    Best Place To Buy Vinyl Records Online Inefficacious Vinnie munches some nonchalance and permutating his Sardinian so felicitously! Rash and cancrizans Durante stones some samiti so shrewdly! Vitric Kalman outranging some Jolie after bicentennial Ahmet loiter academically. Creating a Discogs account is free and gives you access to the Collection tool and much more. Please remove your emoji and try again. You should encourage those out where the customer but not the most likely to buy vinyl records worth. Is good records do the records to edit this is reviving the. If you love music, appreciate vinyl, and enjoy engaging with other music lovers, starting a record store of your own could be financially rewarding while allowing you to work in the music industry every day. With the former, such as Elvis Presley, Pink Floyd, blues singer Robert Johnson, or the Beatles, many of their records remain both valuable and highly collectible long after they stopped recording or even after their deaths. Can I buy on credit? Condition of wax poetic, create a graphic or use when the best to give out of something more closely resemble everyday we gauge on? So that continues to some even after coming up to records! These may cause the needle to skip or get stuck in a loop. Wop Vocal Groups on labels like Sun, Aristocrat, Dial, Gotham or Chance. Despite the checkbox is out to determine a young man spreading an online presence in the artist and online vinyl counterparts, vinyl records will have and see helpful? He also believed and shared the philosophy of coming through the darkness to see the sun and enlightenment.
    [Show full text]
  • Beets Documentation Release 1.5.1
    beets Documentation Release 1.5.1 Adrian Sampson Oct 01, 2021 Contents 1 Contents 3 1.1 Guides..................................................3 1.2 Reference................................................. 14 1.3 Plugins.................................................. 44 1.4 FAQ.................................................... 120 1.5 Contributing............................................... 125 1.6 For Developers.............................................. 130 1.7 Changelog................................................ 145 Index 213 i ii beets Documentation, Release 1.5.1 Welcome to the documentation for beets, the media library management system for obsessive music geeks. If you’re new to beets, begin with the Getting Started guide. That guide walks you through installing beets, setting it up how you like it, and starting to build your music library. Then you can get a more detailed look at beets’ features in the Command-Line Interface and Configuration references. You might also be interested in exploring the plugins. If you still need help, your can drop by the #beets IRC channel on Libera.Chat, drop by the discussion board, send email to the mailing list, or file a bug in the issue tracker. Please let us know where you think this documentation can be improved. Contents 1 beets Documentation, Release 1.5.1 2 Contents CHAPTER 1 Contents 1.1 Guides This section contains a couple of walkthroughs that will help you get familiar with beets. If you’re new to beets, you’ll want to begin with the Getting Started guide. 1.1.1 Getting Started Welcome to beets! This guide will help you begin using it to make your music collection better. Installing You will need Python. Beets works on Python 3.6 or later. • macOS 11 (Big Sur) includes Python 3.8 out of the box.
    [Show full text]
  • 3025 DCG.Halfyr-17 Report.Indd
    2017 MID-YEAR REVIEW MARKETPLACE ANALYSIS & DATABASE HIGHLIGHTS 2017 MID-YEAR REVIEW Marketplace Analysis & Database Highlights FACING THE MUSIC – A YEAR-OVER-YEAR LOOK AT DISCOGS • Catalog sales (releases 18-month and older) have increased (+11.91%) over last year, but New Release sales have really broken the mold with an astounding increase over 2016 (+123.81%). • The most popular format sold so far in 2017 has been vinyl, with an increase in sales year-over-year (+13.92%). However, CDs have seen the most growth in sales (+23.23%). • The Discogs Database has shown growth year-over-year (+8.22%), with a total of 698,301 submissions during the fi rst half of 2017. The highest number of submissions were of the vinyl variety with a total of 318,238 – equal to over 45% of the submissions. • The most popular genres sold in the Discogs Marketplace are Rock, Electronic, and Funk/Soul. However, both Classical (+35.42%) and Blues (+20.95%) genres have seen a large year-over-year increase in sales. • Our Most Popular, Most Wanted, Most Collected, and Top Catalog Sales lists all have something in common – ranking number one on each list is Pink Floyd’s Dark Side Of The Moon. MOST POPULAR CATALOG* VS. NEW Year-over-year fi gures for Catalog and New Release sales. 2017 2016 % CHG. CATALOG 670,592 599,220 11.91% NEW 90,453 40,415 123.81% *Catalog is defi ned as over 18 months since release. DISCOGS | 2017 MID-YEAR REVIEW: Marketplace Analysis & Database Highlights 2 DATABASE FORMATS Year-over-year comparison of the total number of Discogs Database submissions.
    [Show full text]
  • Fedora 14 User Guide
    Fedora 14 User Guide Using Fedora 14 for common desktop computing tasks Fedora Documentation Project User Guide Fedora 14 User Guide Using Fedora 14 for common desktop computing tasks Edition 1.0 Author Fedora Documentation Project [email protected] Copyright © 2010 Red Hat, Inc. and others. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/. The original authors of this document, and Red Hat, designate the Fedora Project as the "Attribution Party" for purposes of CC-BY-SA. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, MetaMatrix, Fedora, the Infinity Logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. For guidelines on the permitted uses of the Fedora trademarks, refer to https://fedoraproject.org/wiki/ Legal:Trademark_guidelines. Linux® is the registered trademark of Linus Torvalds in the United States and other countries. Java® is a registered trademark of Oracle and/or its affiliates. XFS® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Release V2.5.6
    MusicBrainz Picard Release v2.5.6 Feb 16, 2021 MusicBrainz Picard User Guide by Bob Swift is licensed under CC0 1.0. To view a copy of this license, visit https://creativecommons.org/publicdomain/zero/1.0 CONTENTS 1 Introduction 1 1.1 Picard Can. ...........................................2 1.2 Picard Cannot. .........................................2 1.3 Limitations...........................................2 2 Contributing to the Project3 3 Acknowledgements4 3.1 Editor and English Language Lead..............................4 3.2 Translation Teams.......................................4 3.3 Contributors..........................................4 4 Glossary of Terms 6 5 Getting Started 10 5.1 Download & Install Picard................................... 10 5.2 Main Screen.......................................... 12 5.3 Status Icons........................................... 18 6 Configuration 20 6.1 Screen Setup.......................................... 20 6.2 Action Options......................................... 21 6.3 Option Settings......................................... 21 7 Tags & Variables 66 7.1 Basic Tags........................................... 66 7.2 Advanced Tags......................................... 70 7.3 Basic Variables......................................... 72 7.4 File Variables.......................................... 73 7.5 Advanced Variables...................................... 74 7.6 Classical Music Tags...................................... 75 7.7 Tags from Plugins......................................
    [Show full text]