diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2010-10-08 22:29:40 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2010-10-08 22:29:40 -0700 |
commit | 90811308a55fda3131dbfe5fb749906457dcfb13 (patch) | |
tree | c5e8f6d197aa8b891ac426d52affea4342c3d610 /omptagger | |
parent | a02fb360906e1c955bb22f9b61b352d102734be2 (diff) | |
download | omptagger-90811308a55fda3131dbfe5fb749906457dcfb13.tar.gz omptagger-90811308a55fda3131dbfe5fb749906457dcfb13.tar.xz |
Some minor changes.
Diffstat (limited to 'omptagger')
-rwxr-xr-x | omptagger | 38 |
1 files changed, 14 insertions, 24 deletions
@@ -56,19 +56,20 @@ Usage: omptagger [options] [files] Options: --view -v View all tags --view-tag -t View a tag + --add-tag -a Add a tag --set-tag -s Set a tag --remove -r Remove all tags --remove-tag -d Remove a tag --generate -g Generate tags based on filename --rename -m Generate filename based on tags --scheme -n Specify a file naming scheme - --pretend -p Do not make any actual changes - --list -l Display list of available tags + --list -l Display available scheme keys --help -h Display help information + --pretend -p Do not finalise changes Notes: + * Actions are executed in the order they are specified. * The default file naming scheme is Artist - Title. - * Schemes must be specified prior to actions that use them. end exit @@ -76,27 +77,16 @@ end def list puts <<-end -┌────────────────────────┐ -│ Keys Vorbis Comments │ -├────────────────────────┤ -│ %a Artist │ -│ %b Album │ -│ %d Date │ -│ %n TrackNumber │ -│ %t Title │ -│ %* Wildcard │ -├────────────────────────┤ -│ Contact │ -│ Copyright │ -│ Description │ -│ Genre │ -│ ISRC │ -│ License │ -│ Location │ -│ Organization │ -│ Performer │ -│ Version │ -└────────────────────────┘ +Keys Vorbis Comments ID3v2 Frames +---- --------------- ------------- + %a Artist Artist + %b Album Album + %d Date Year + %n TrackNumber Track + %t Title Title +---- --------------- ------------- + %* Wildcard Wildcard + %% Per cent sign Per cent sign end exit |