audacity - converte vários .aup para .mp3

3

Eu tenho um monte de cerca de 130 arquivos .aup (todas as gravações de vinis) que eu gostaria de converter em mp3. Cada .aup é um lado inteiro do vinil (eu não quero dividir as faixas - o lado inteiro como um mp3 é bom). Meu problema é como posso converter em lote todos esses aups para mp3s de uma só vez. Seria muito entediante abrir cada um de cada vez, depois na caixa de diálogo Apply Chain: selecione 'Apply to Current Project' para 130 arquivos .. um por um.

Alguém teve alguma sorte em alterar o código ou, de outra forma, encontrar uma solução?

Eu rastreei até o método abaixo em (BatchProcessDialog.cpp)

void BatchProcessDialog::OnApplyToProject(wxCommandEvent &event)
{
   long item = mChains->GetNextItem(-1,
                                    wxLIST_NEXT_ALL,
                                    wxLIST_STATE_SELECTED);
   if (item == -1) {
      wxMessageBox(_("No chain selected"));
      return;
   }
   wxString name = mChains->GetItemText(item);

   wxDialog d(this, wxID_ANY, GetTitle());
   ShuttleGui S(&d, eIsCreating);

   S.StartHorizontalLay(wxCENTER, false);
   {
      S.StartStatic(wxT(""), false);   // deliberately not translated (!)
      {
         S.SetBorder(20);
         S.AddFixedText(wxString::Format(_("Applying '%s' to current project"),
                                         name.c_str()));
      }
      S.EndStatic();
   }
   S.EndHorizontalLay();

   d.Layout();
   d.Fit();
   d.CenterOnScreen();
   d.Move(-1, 0);
   d.Show();
   Hide();

   wxWindowDisabler wd;

   gPrefs->Write(wxT("/Batch/ActiveChain"), name);

   mBatchCommands.ReadChain(name);
   if (!mBatchCommands.ApplyChain()) {
      return;
   }
}
    
por toop 30.01.2012 / 12:01

3 respostas

2

Eu decidi criar meu próprio script em autohotkey (é um pouco instável, mas pode passar por alguns arquivos por vez):

SetTitleMatchMode 2
#p::Pause

#x::Exit

#a::
direc = C:\Documents and Settings\Test\My Documents\myaups\
FileList =  ; Initialize to be blank.
Loop, %direc%*.aup
    FileList = %FileList%%A_LoopFileName%'n
Loop, parse, FileList, 'n
{
    Sleep 2500
    Run, "C:\Program Files\Audacity 1.3 Beta (Unicode)\audacity.exe"
    Sleep 2500
    WinWait, Audacity, 
    IfWinNotActive, Audacity, , WinActivate, Audacity, 
    WinWaitActive, Audacity,
    if A_LoopField =  ; Ignore the blank item at the end of the list.
        continue
    Sleep 2500
    Send, {CTRLDOWN}o{CTRLUP}
    Sleep 3000
    WinWait, Select one or more audio files..., 
    IfWinNotActive, Select one or more audio files..., , WinActivate, Select one or more audio files..., 
    WinWaitActive, Select one or more audio files..., 
    Sleep, 2800
    Send, %direc%
    Sleep, 2600
    Send, {Enter}
    Sleep, 2600
    Send, %A_LoopField% ;filename from direc loop
    Sleep, 2600
    Send, {Enter}
    Sleep, 4000
    IfWinActive, Warning - Opening Old Project File
    {
    Send, {Enter}
    Sleep, 1000
    }
    Sleep, 3800
    IfWinActive, Warning - Orphan Block File(s)
    {
    Send {Tab}
    Sleep 1000
    Send {Tab}
    Sleep 1000
    Send, {Enter}
    }
    Sleep, 3000
    Send, {SHIFTDOWN}c{SHIFTUP} ;first must set the keyboard shortcut in audacity to Shift+C
    Sleep, 3600
    WinWait, Apply Chain, 
    IfWinNotActive, Apply Chain, , WinActivate, Apply Chain, 
    WinWaitActive, Apply Chain, 
    Sleep 500
    Send, {TAB}{ENTER}
    Sleep 4000
    Loop ;wait till conversion finishes
    {
        if !WinExist("Apply Chain")
            break  ; Terminate the loop
        else
            Sleep 200
    }
    Sleep 3800
    Send, {CTRLDOWN}q{CTRLUP} ;exit audacity
    Sleep, 3800
    WinWait, Save changes?, 
    IfWinNotActive, Save changes?, , WinActivate, Save changes?, 
    WinWaitActive, Save changes?, 
    Sleep 500
    Send, {TAB}{ENTER}
    Sleep 6500
}
Return
    
por 04.02.2012 / 14:18
1

Será um pouco complicado se você não tiver conhecimento de C ++, já que precisa saber sobre a estrutura de classes da qual o objeto mChains é instanciado e chamar as funções corretas para encadeá-lo.

Uma alternativa pode ser escrever algo usando AutoIt que emula os cliques da GUI para você.

    
por 30.01.2012 / 12:09
0

O Audacity (pelo menos versões recentes) tem no diálogo File > Aplicar Chain ... o botão Aplicar aos arquivos ... , que permite aplicar a cadeia a vários arquivos de uma só vez.

    
por 09.09.2016 / 15:01