hcmiya / opuscomment

Utility to edit Ogg Opus tags/output gain - Ogg Opusのタグ及びOutput Gain情報をvorbiscomment(1)と互換のあるインターフェイスで編集するユーティリティ
MIT License
18 stars 4 forks source link

Don't works tag deleting #28

Closed asakura42 closed 5 years ago

asakura42 commented 5 years ago

Not with -a, not with -w.

hcmiya commented 5 years ago

Try

$ opuscomment -d NAME foo.opus </dev/null

Can't work?

If -d is given, opuscomment enters append (-a) mode.

asakura42 commented 5 years ago

Great. With </dev/null it works properly.

hcmiya commented 5 years ago

You may want to do:

$ opuscomment -d NAME -t "NAME=New value" foo.opus

or

$ echo NAME=New value |opuscomment -d NAME foo.opus