Metadata
Re: Metadata
There isn't an Audacity 3. I presume that you mean Audacity 2.0.3.
The automatic pop-up of the Metadata Editor on export can be turned off in preferences.
You will find the setting in: "Edit menu > Preferences > Import / Export"
The automatic pop-up of the Metadata Editor on export can be turned off in preferences.
You will find the setting in: "Edit menu > Preferences > Import / Export"
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Metadata
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
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.
Re: Metadata
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.
Currently, if there is metadata in the project, then it is written to the exported file, whether or not the Metadata Editor is shown.
I'd be in favour of "Don't show again" if there was also an option to not write metadata.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Metadata
+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.
Re: Metadata
This would need some beta testing to ensure that it works for all the formats which may write Metadata…
add this code to srcprefsImportExportPrefs.cpp about line number 80:
(As usual, I have included a little bit of preceding and trailing code for context).
Change this code in srcexportExport.cpp about line number 167:
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."));
Change this code in srcexportExport.cpp about line number 167:
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
}
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Metadata
There is a P3 bug open to sort all this mess out including passing metadata through to each track without showing a metadata window for each track (and without having to find the Editor in File Menu to enter the data before export and then find the Preference to stop the editor displaying on export); also to remove the Preference and choose to show the editor/write metadata or not in the Export and Export Multiple dialogues.
Gale
Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual