vlc "input_file.ext" --sout #transcode{acodec=mp3}:duplicate{dst=std{access=file,mux=raw,dst=\""output_file.mp3"\"},select=\"novideo\"} vlc://quit
Load a file into VLC, convert to mp3, save, quit.
done.
vlc "input_file.ext" --sout #transcode{acodec=mp3}:duplicate{dst=std{access=file,mux=raw,dst=\""output_file.mp3"\"},select=\"novideo\"} vlc://quit
Sub Archive()
Dim objFolder As Outlook.Folder
Dim objNS As Outlook.NameSpace
Dim objItem As Object
Set objNS = Application.GetNamespace("MAPI")
'Get the correct "Archive" folder
Set objFolder = objNS.Folders("- Personal Folders 2011").Folders("Archived Inbox 2011")
If objFolder Is Nothing Then
MsgBox "This folder doesn't exist!", vbOKOnly + vbExclamation, "INVALID FOLDER"
Exit Sub
End If
If Application.ActiveExplorer.Selection.Count = 0 Then
'Require that this procedure be called only when a message is selected
Exit Sub
End If
For Each objItem In Application.ActiveExplorer.Selection
objItem.Move objFolder
Next
Set objItem = Nothing
Set objFolder = Nothing
Set objNS = Nothing
End Sub