Linux mp3 publicar tag writer

0
Estou procurando mp3 cli tag escritor para linux (centos) que pode adicionar tag publisher, pesquisando de alguns dias tentou um monte de escritores cli mas todos eles têm opções básicas como título, artista, álbum, gênero, comentário o que me interessa como tag publisher então qualquer idéia de qual ferramenta pode me ajudar com isso nenhum gui apenas cli como estou no centos tem que ligá-lo para php obrigado

    
por user44570 21.11.2016 / 14:12

1 resposta

0

depois de muita pesquisa eu encontrei o mid3v2 que pode escrever tags v2 em mp3

yum install python
yum install pip
pip install mutagen

executando-o

$ mid3v2 -h
Usage: mid3v2 [OPTION] [FILE]...

Mutagen-based replacement for id3lib's id3v2.

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -v, --verbose         be verbose
  -q, --quiet           be quiet (the default)
  -e, --escape          enable interpretation of backslash escapes
  -f, --list-frames     Display all possible frames for ID3v2.3 / ID3v2.4
  --list-frames-v2.2    Display all possible frames for ID3v2.2
  -L, --list-genres     Lists all ID3v1 genres
  -l, --list            Lists the tag(s) on the open(s)
  --list-raw            Lists the tag(s) on the open(s) in Python format
  -d, --delete-v2       Deletes ID3v2 tags
  -s, --delete-v1       Deletes ID3v1 tags
  -D, --delete-all      Deletes ID3v1 and ID3v2 tags
  --delete-frames=FID1,FID2,...
                        Delete the given frames
  -C, --convert         Convert tags to ID3v2.4 (any editing will do this)
  -a "ARTIST", --artist="ARTIST"
                        Set the artist information
  -A "ALBUM", --album="ALBUM"
                        Set the album title information
  -t "SONG", --song="SONG"
                        Set the song title information
  -c "DESCRIPTION":"COMMENT":"LANGUAGE", --comment="DESCRIPTION":"COMMENT":"LANGUAGE"
                        Set the comment information
  -g "GENRE", --genre="GENRE"
                        Set the genre or genre number
  -y YYYY[-MM-DD], --year=YYYY[-MM-DD], --date=YYYY[-MM-DD]
                        Set the year/date
  -T "num/num", --track="num/num"
                        Set the track number/(optional) total tracks

tags mp3 podem ser escritas como

mid3v2 -a "artist" --TPUB "company name" 'path/file.mp3'
    
por 24.11.2016 / 16:16