mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
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:
parent
3702fa773c
commit
d38c44d25e
7 changed files with 48 additions and 11 deletions
|
@ -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')}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue