command line?

Rather than have the dialog box popup asking for the session name & template etc, is it possible to pass these as arguments from the command line, and have ardour take you straight into the main program?

Also, is it possible to ‘export’ to WAV offline, i.e. pass an argument to ardour which would process the given session file and spit out a wav file without launching the gui?

Thanks,
Ian.

No answer till now? That would be of interest for me too.

Going off memory I don’t believe it is possible, but could be wrong. I strongly suggest looking in Mantis and seeing if this feature request is in there, and if it isn’t putting one in there.

Seablade

you can add some more in a feature request of mine

http://tracker.ardour.org/view.php?id=3179

On Fedora Linux I’ve always done …

/usr/local/bin/ardour6 -a -n /fhome/dathho/Ardour6\ Sessions/Basic/ >> ~/ARDLOG/ardour6.log 2>&1 &

to load my basic Studio setup automatically and start everything up. Jack is always running from the following script first …

#!/bin/bash

echo ‘’
echo ‘Cleaning up old logs and procs.’
echo ‘’

rm ~/.log/jack/jackdbus.log
rm ~/.log/a2j/a2j.log
rm ~/.log/lash/lash.log

jack_control stop
jack_control exit

killall -9 a2jmidid qmidinet jackd ardour5 mixxx qsynth
#kill -9 pidof jackdbus

echo ‘’
echo ‘Starting jackd via dBus and configuring…’
echo ‘’

DELAY=0
DEV=hw:Pro40009983
DRIVER=alsa
INC=18
OC=16
SLAVEDRIVER=loopback
#MIDI_DRIVER=alsa
MIDI_DRIVER=jack
RATE=48000
PERIOD=256
NPERIODS=3
RT=true
PRI=72
HWMON=false
HWMETER=false
SHORTS=true
PORTMAX=1024
CS=0
IL=0
OL=0

jack_control ds $DRIVER
asd $SLAVEDRIVER
dps device $DEV
dps rate $RATE
dps period $PERIOD
dps hwmon $HWMON
dps nperiods $NPERIODS
dps midi-driver $MIDI_DRIVER
eps realtime $RT
eps realtime-priority $PRI
eps port-max $PORTMAX
eps clock-source $CS

jack_control start
jack_control dl
jack_control ep
jack_control dp

~/Jack/fdawstart &
exit

I might suggest starting a new topic for this, the last time this topic has gotten a post (And some of the above info is out of date as a result) was over 8 years ago.

   Seablade