New: Option to disable cover art embed in files (#4547)

* New: Option to disable cover art embed in files

Fixes #2488

* Update src/NzbDrone.Core/MediaFiles/AudioTagService.cs

Co-authored-by: Bogdan <mynameisbogdan@users.noreply.github.com>
This commit is contained in:
Qstick 2024-02-04 14:26:15 -06:00 committed by GitHub
parent 3702fa773c
commit d38c44d25e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 48 additions and 11 deletions

View file

@ -61,6 +61,23 @@ function MetadataProvider(props) {
/>
</FormGroup>
{
settings.writeAudioTags.value !== 'no' &&
<FormGroup>
<FormLabel>
{translate('EmbedCoverArtInAudioFiles')}
</FormLabel>
<FormInputGroup
type={inputTypes.CHECK}
name="embedCoverArt"
helpText={translate('EmbedCoverArtHelpText')}
onChange={onInputChange}
{...settings.embedCoverArt}
/>
</FormGroup>
}
<FormGroup>
<FormLabel>
{translate('ScrubExistingTags')}