Metadata
Posted: Thu Apr 18, 2013 7:34 pm
Can the Metadata window be turned off in Audacity 3.0?
Bob H
Bob H
This seems to be a discoverability issue - I was just offered money to create a build of Audacity which had the Metadata window turned off. When I pointed out that the ability already existed in Preferences the company's reply was something like "Oh, we had never seen that. That will do the job."rj7500 wrote:Can the Metadata window be turned off
Personally I'd be against that unless we also have an option to not write metadata.Edgar wrote:We already have a number of dialogues which have a "Don't show me again" checkbox - may be the Metadata dialog should have one as well.
+1 been bitten by this numerous times - trivial code writesteve wrote:I'd be in favour of "Don't show again" if there was also an option to not write metadata.Edgar wrote: "Don't show me again" checkbox - may be the Metadata dialog should have one as well.
Code: Select all
S.TieRadioButton(_("&Use custom mix (for example to export a 5.1 multichannel file)"),
false);
}
S.EndRadioButtonGroup();
S.AddSpace(20);//new code
S.TieCheckBox(_("S&how Metadata Editor prior to export step"),
wxT("/AudioFiles/ShowId3Dialog"),
true);
S.TieCheckBox(_("If Metadata Editor is not shown do not write any metadata"),
wxT("/AudioFiles/NoWriteMetadata"),
false);//new code
S.AddSpace(20);//new code
S.AddFixedText(_("Note: Export quality options can be chosen by clicking the Optionsnbutton in the Export dialog."));
Code: Select all
void ExportPlugin::SetCanMetaData(bool canmetadata, int index)
{
if (gPrefs->Read(wxT("/AudioFiles/ShowId3Dialog"), true))//new code
mFormatInfos[index].mCanMetaData = canmetadata;
else//new code
canmetadata = false;//new code
}