Hi, I'm new to Audacity.
I have a set of audio clips that I would need to save onto my PC using it's built-in sound card.
I would need to record these clips as .wav files & time stamp them (either in the file name or inside the audio clip itself).
Audacity seems like a good choice, but I don't see the time stamp feature.
Is there a way to incorporate this feature into Audacity - are there DLLs that allow me to use LabView or VisualBasic code that I write to add this feature ?
Any suggestions on how to approach this would be appreciated.
Thanks,
ak
timestamping feature
Forum rules
Audacity 1.2.x is now obsolete. Please use the current Audacity 2.1.x version.
The final version of Audacity for Windows 98/ME is the legacy 2.0.0 version.
Audacity 1.2.x is now obsolete. Please use the current Audacity 2.1.x version.
The final version of Audacity for Windows 98/ME is the legacy 2.0.0 version.
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: timestamping feature
All computer files carry a creation time and date. Windows isn't always the best at letting you see it, but it's always there. There is no stamp feature because you can't stop it.
Koz
Koz
Re: timestamping feature
Yes, I understand.
In general, is there an ability to create custom LabView, C++, or VisualBasic code that can use Audacity functions ?
(Are there DLLs for software developement ?)
Regards,
ak
In general, is there an ability to create custom LabView, C++, or VisualBasic code that can use Audacity functions ?
(Are there DLLs for software developement ?)
Regards,
ak
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: timestamping feature
Hang one. Let me inquire.
Koz
Koz
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: timestamping feature
What is the basis of the timestamp - time when you recorded the file or file modified time? If you used File > Export Multiple (the most efficient method, because you could export the files all at one go) the files would all have near identical timestamps.
If the file modified time is what you want I would just make it easy on yourself and write a command line script that renames the exported files to include the file modified date. Even easier, use xplorer2 and the File > Mass Rename feature - enter $N $D and a space and the file modified time will be added to the end of all the file names. If you want the recorded time, you can of course enter it manually as the file name or (in Audacity 1.3.7) in the Comment field in the Metadata Editor that pops up when you export. This latter assumes your application can read LIST INFO tags in the riff chunk of WAV files. We don't yet support Broadcast WAV (BWF) that allows entry of real timestamp data in the metadata.
If you do want to discuss a feature such as adding system clock information to the names of exported files, please subscribe to our developers' mailing list and ask there. Audacity is C++. Certainly it's theoretically possible to compile Audacity from latest CVS development code:
http://audacityteam.org/community/developers#cvs
and create a plug-in for use in Audacity if you provide hooks to it in the code:
http://audacityteam.org/wiki/index.php? ... wn_Plug-in
Gale
If the file modified time is what you want I would just make it easy on yourself and write a command line script that renames the exported files to include the file modified date. Even easier, use xplorer2 and the File > Mass Rename feature - enter $N $D and a space and the file modified time will be added to the end of all the file names. If you want the recorded time, you can of course enter it manually as the file name or (in Audacity 1.3.7) in the Comment field in the Metadata Editor that pops up when you export. This latter assumes your application can read LIST INFO tags in the riff chunk of WAV files. We don't yet support Broadcast WAV (BWF) that allows entry of real timestamp data in the metadata.
If you do want to discuss a feature such as adding system clock information to the names of exported files, please subscribe to our developers' mailing list and ask there. Audacity is C++. Certainly it's theoretically possible to compile Audacity from latest CVS development code:
http://audacityteam.org/community/developers#cvs
and create a plug-in for use in Audacity if you provide hooks to it in the code:
http://audacityteam.org/wiki/index.php? ... wn_Plug-in
Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: timestamping feature
Koz