{"id":20187303,"url":"https://github.com/keithdhedger/kute","last_synced_at":"2026-04-28T16:36:54.238Z","repository":{"id":156325261,"uuid":"161356186","full_name":"KeithDHedger/Kute","owner":"KeithDHedger","description":"(K)eith's (U)niversal (T)ag (E)ditor, Linux cli tag editor for flac,m4a and mp3 files.","archived":false,"fork":false,"pushed_at":"2023-04-02T13:29:57.000Z","size":246,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-13T18:21:50.632Z","etag":null,"topics":["c","c-plus-plus","command-line-tool","editor","flac","linux","m4a","mp3","tags"],"latest_commit_sha":null,"homepage":null,"language":"Roff","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KeithDHedger.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-11T15:41:19.000Z","updated_at":"2022-12-04T19:25:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"2a7fe969-725a-4afb-95c5-a51926e9ff48","html_url":"https://github.com/KeithDHedger/Kute","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeithDHedger%2FKute","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeithDHedger%2FKute/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeithDHedger%2FKute/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KeithDHedger%2FKute/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KeithDHedger","download_url":"https://codeload.github.com/KeithDHedger/Kute/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241622615,"owners_count":19992504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c-plus-plus","command-line-tool","editor","flac","linux","m4a","mp3","tags"],"created_at":"2024-11-14T03:22:39.683Z","updated_at":"2026-04-28T16:36:49.187Z","avatar_url":"https://github.com/KeithDHedger.png","language":"Roff","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nKute - (K)eiths (U)niversal (T)ag (E)ditor\n\n\nRead/Write  tags  to/from  a music file including FLAC,AAC and MP3. Multiple files can be tagged simultaneously. Tags can also be removed (see examples). File type is found automatically (default) or can forced to a specific format.\n\nOPTIONS\n       r, --read-all Print tags to stdout (default)\n\n       a, --artist=ARG\n              Set tag ARTIST to ARG\n\n       l, --album=ARG\n              Set tag ALBUM to ARG\n\n       n, --title=ARG\n              Set tag TITLE to ARG\n\n       t, --track=ARG\n              Set tag TRACK to ARG\n\n       T, --total-tracks=ARG\n              Set tag TOTALTRACKS to ARG\n\n       C, --cd=ARG\n              Set tag CD to ARG\n\n       i, --compilation=ARG\n            Set tag COMPILATION to ARG\n              Note this is non standard and ARG should be 1 for part of a compilation or 0 for not\n\n       y, --year=ARG\n              Set tag YEAR to ARG\n\n       g, --genre=ARG\n              Set tag GENRE to ARG\n\n       m, --composer=ARG\n              Set tag COMPOSER to ARG\n\n       o, --comment=ARG\n              Set tag COMMENT to ARG\n\n       Y, --copy\n              Copy ALL tags from first file to ALL subsequent files.\n\n       f, --force-flac\n              Don't try to guess the file type treat it as a FLAC file\n\n       c, --force-aac\n              Don't try to guess the file type treat it as an AAC file\n\n       p, --force-mp3\n              Don't try to guess the file type treat it as an MP3 file\n\n\t   q, --use-quotes\n              Quote file/artist/album names etc\n\n       ?,h, --help\n              Print this help\n\nEXAMPLES\n       kute \"/media/LinuxData/Music/Buddy Holly/The Very Best Of Buddy Holly/01 That'll Be The Day.flac\"\n       Produces:\n       FILENAME=/media/LinuxData/Music/Buddy Holly/The Very Best Of Buddy Holly/01 That'll Be The Day.flac\n       FILETYPE=1\n       TITLE=That'll Be The Day\n       ARTIST=Buddy Holly\n       ALBUM=The Very Best Of Buddy Holly\n       TRACK=01\n       TOTALTRACKS=20\n       CD=\n       GENRE=Rock \u0026 Roll\n       YEAR=\n       COMPILATION=\n       COMPOSER=\n       COMMENT=\n\n       Set the title to \"new title\"\n\n       kute --title=\"new title\" \"/media/LinuxData/Music/Buddy Holly/The Very Best Of Buddy Holly/01 That'll Be The Day.flac\"\n\n       Remove track number and track total\n\n       kute --track= \"/media/LinuxData/Music/Buddy Holly/The Very Best Of Buddy Holly/01 That'll Be The Day.flac\"\n\n       Set the album for \"01 The Jean Genie.flac\" AND \"12 Diamond Dogs.flac\" to \"The Best of David Bowie\"\n\n       kute --album=\"The Best of David  Bowie\"  \"/media/LinuxData/Music/David  Bowie/The  Best  of  David  Bowie/01  The  Jean  Genie.flac\"  \"/media/Linux-\n       Data/Music/David Bowie/The Best of David Bowie/12 Diamond Dogs.flac\"\n\n       Copy all tags from /tmp/xxx/01 All The Tired Horses.flac to /tmp/xxx/01 All The Tired Horses.m4a and /tmp/xxx/01 All The Tired Horses.mp3\n       kute -Y \"/tmp/xxx/01 All The Tired Horses.flac\" \"/tmp/xxx/01 All The Tired Horses.m4a\" \"/tmp/xxx/01 All The Tired Horses.mp3\"\n\nNOTES\n       Setting the track number, cd number, track total or compiliation to 0 will remove the tag.\n       Forcing a file type onto a different file may cause unexpected results.\n\n       Always, ALWAYS use on a backup of the original, just in case!\n\n       Filetypes\n       1=FLAC\n       2=AAC\n       3=MP3\n       4=UNKNOWN\n\n       Removing the track tag will alo remove the total tracks tag.\n\n\nAUTHOR\n       Keith Hedger\n\nREPORTING BUGS\n       kdhedger68713@gmail.com\n\nCOPYRIGHT\n       K.D.Hedger 2009-2018\n\n\n\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeithdhedger%2Fkute","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeithdhedger%2Fkute","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeithdhedger%2Fkute/lists"}