Hi newb here,
Arch Linux
Audacity 2.3.3
Distro release
Im trying to get a macro to work and import a .mp3 file to append another .mp3, I think i figured it out (new to audacity macros), but all of a sudden I cannot import the file. I have made sure the active directory for both importing and the file being operated on by the macro is correct (one in the same). The strange thing is, initially, the import function worked (though I hadn't quite figured out the rest of the settings of other macro functions and the output was not what I was looking for). Now I think i've figured out the other function settings for the rest of the macro, but can't seem to test it as I can't import the file (using the macro Import2 function). This is step one. I am sorry if I am totally clueless and it is something simple, but this is why I am asking!
import macro not working
Forum rules
This forum is for Audacity on GNU/Linux.
Please state:
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade (see https://www.audacityteam.org/download/).
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state:
- which version of Linux you are using,
- the exact three-section version number of Audacity from Help menu > About Audacity,
- whether you installed your distribution's release, PPA version, or compiled Audacity from source code.
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade (see https://www.audacityteam.org/download/).
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Re: import macro not working
What are you trying to do with the macro?
If you want to batch process files, you don't need to have an Import command.
If you want to batch process files, you don't need to have an Import command.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: import macro not working
Very simple operation of removing a section of audio in the main file (one track, stereo) and adding a section of audio from another file. I do seem to be able to remove a section by timestamp using an audacity macro. For the present operation, I only need to add a piece of audio to the front of the main file (after deleting a section), so I could just use cat file1.mp3 file2.mp3 > catfile.mp3. I would like to batch process this too, but my scripting/programming chops may not be up to it, unless you can suggest a simple way!
Re: import macro not working
If you use the "Import2:" command you have to enter the full file path and file name, for example:
"/home/<user-name>/Music/some-file.wav"
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: import macro not working
Excellent! Funny, I did think of doing this just today for something else, but I did not apply it to this specific case. I will expect success and post back if I have further problems. Thanks kindly for the rapid reply!