Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
--metadata-from-title not working as it should #6587
Comments
|
ffmpeg/avconv doesn't look capable embedding webm metadata. Moreover looks like official webm metadata tags are not defined at all. You can embed tags into matroska container by forcing output template extension to
Closing since not a youtube-dl issue. |
|
But avconv is capable of embed metadata on opus and ogg files. avconv -i 1.opus -metadata title="test title" -metadata author="test artist" -metadata album="test album" -metadata track="12" -c copy 2.opus You will see |
I'm trying to create an semi-automated download/tagging script using Youtube-dl, and almost everyhing is working fine, expect the tagging.
I mean, with m4a and mp3 files the script works fine, but with opus/ogg the "--metadata-from-title" doesn't work as it should, only tag the title but not the artist.
This is my script
an example using --verbose output:
As you can see, the script runs without showing any issues, but the file is not properly tagged.
I'm using the latest libav and youtube-dl binaries on Windows 10. I already tried switch to ffmpeg but is not working either.
The issue #2368 is the same as mine, I suppose.
And as I mentioned, for m4a and mp3 the files are properly tagged, the problem occours only with Vorbis files.