As this is something quite specific for some user, it would be the best to solve it using a QML script. The following script will remove all frames except Artist, Album from Tag 2, you can easily adapt it for other frames or other tags:
If you save it as "/home/matteo/RemoveFrames.qml", you can add it to the user actions in "Settings/User Actions" with Name="Remove Frames", Command="@qml /home/matteo/RemoveFrames.qml" and Output checked (to see any errors). You can afterwards invoke the script using the context menu of the file list.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I got it to work but I get this error message
file:///Users/matteo/Documents/RemoveFrames.qml:6: TypeError: Property 'tag' of object TaggedFileSelection(0x7ff18d04cf20, "TaggedFileSelection") is not a function
If you manage to help me with it would be great
thanks again
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you are not using the latest version of Kid3 (3.4.2), you have to replace app.selectionInfo.tag(Frame.Tag_2).tagFormat by app.selectionInfo.tagFormatV2
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
As this is something quite specific for some user, it would be the best to solve it using a QML script. The following script will remove all frames except Artist, Album from Tag 2, you can easily adapt it for other frames or other tags:
If you save it as "/home/matteo/RemoveFrames.qml", you can add it to the user actions in "Settings/User Actions" with Name="Remove Frames", Command="@qml /home/matteo/RemoveFrames.qml" and Output checked (to see any errors). You can afterwards invoke the script using the context menu of the file list.
Thanks so much, I'll try to make it work as i'm not an expert with scripts but i should manage
Thanks again!
I got it to work but I get this error message
file:///Users/matteo/Documents/RemoveFrames.qml:6: TypeError: Property 'tag' of object TaggedFileSelection(0x7ff18d04cf20, "TaggedFileSelection") is not a function
If you manage to help me with it would be great
thanks again
If you are not using the latest version of Kid3 (3.4.2), you have to replace
app.selectionInfo.tag(Frame.Tag_2).tagFormatbyapp.selectionInfo.tagFormatV2I made a mistake in the update, sorry.
Works perfectly, thanks a lot! This will save me a lot of time :)
Thanks again for your efforts in the app!