Audio Only - is it possible to not save the metadata? #1330
Replies: 1 comment 2 replies
-
I do not work for VDH. I am just another user. VDH does not offer any way of dealing with such details. VDH just downloads whatever the web site serves up. If that includes metadata, then VDH faithfully preserves it all. Strictly speaking, this is now about to go off topic. I know less than diddly squat about Mac. I do know that with ffmpeg you can set any metadata you like on a file. You use an output parameter called -metadata title="Whatever you want" To remove an item of metadata, you would code something like this: -metadata title="" You would code a series of ffmpeg globalparameters inputparameters -i "Input file name" outputparameters "Output file name" redirection The 2>"Log file name" In my diddly squat ignorance of Mac, I can't tell you what the analogous thing is for you. I would assume, though, that you would know. If you don't code something like this, the execution of ffmpeg just flashes messages by in the command window & you ultimately will have no idea what it did nor whether it was successful. So capturing the output is essential to not only verify what it did but help you in debugging. You should expect to have to code ffmpeg invocations over & over until you hit upon a combination that does what you want. Obviously, you will not be typing this command in a command window each time. You will be writing a .bat file. That would be more Windows-speak. You need to write a command script for all of this in whatever format Mac requires. You already have ffmpeg. It is part of the CoApp package. If Mac is anything like Windows, the VDH settings tell you where that is located: The approach I would take is to supply a series of In this scenario, I would be sure to include this among your -codec: copy Without that, everything would still work, but ffmpeg would do a whole lot more processing, burning up your CPU as it goes. It might also make each invocation of ffmpeg last rather a long time, even on a powerful CPU. I would also include Failing that, I suppose what you are already doing is equivalent to what I'm suggesting. Perhaps using ffmpeg would do everything you want in a single step, but you still have to pretty much hand-craft an ffmpeg command for each file you want to process. I'm not sure using ffmpeg is any better than what you're doing now. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Your question
I am downloading as "Audio Only" music that accompanies sheet music so I can have it in my Apple Music Library rather than having to go to the website to play it. The files downloaded as Audio Only are .mp3 files and the Title, Album & Artist names are included in metadata. I then change the filename from a generic "piano1.mp3" etc. to a specific filename with Composer-Title-Opus etc. But when I import the folder of files into Apple Music on Mac, it uses the embedded Title from the metadata which isn't as useful as my filename, and sometimes the Titles are just so vague as to be useless (like "Bach 2" etc.)
My question: Is it possible to save an Audio Only file without the metadata? I haven't found an easy way to strip it out.
My workaround: I open the .mp3 files in QuickTime, then File > Export > Audio Only. This saves the file again as an .m4a file and strips out the metadata. Now Apple Music uses my filename as the Title. Then I Get Info on all the songs and apply the Album name and Artist again.
If there is an easier way on Mac, let me know. I would love to cut out some steps as I have hundreds of songs. Thanks!
Addon & CoApp version and details
version: 9.1.0.41
target: mozilla
channel: beta
lang: en-US
coapp: {"found":true,"path":"/Applications/net.downloadhelper.coapp.app/Contents/MacOS/vdhcoapp","version":"2.0.19","new_version":false}
license: {"accepted":true,"email":"","key":"07af69178bff4630"}
platform: x86-64 mac
UA: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:130.0) Gecko/20100101 Firefox/130.0
{
"valid_license_message_has_been_displayed": true,
"used_history_button": true,
"download_directory": "/Users/xxx/dwhelper",
"last_download_directory": {
"__serializer_tag": "option_some",
"__serializer_value": {
"__serializer_tag": "primitive"
}
},
"never_show_no_incognito_msg_again": true,
"view_options": {
"all_tabs": false,
"low_quality": false,
"sort_by_status": true,
"sort_reverse": false,
"show_button_clean": true,
"show_button_clean_all": false,
"show_button_convert_local": false,
"hide_downloaded": false
},
"use_sidebar": false,
"open_count_store": 122,
"successfull_dl": 45
}
Beta Was this translation helpful? Give feedback.
All reactions