Fred Gleason fa28a37c47 2021-12-07 Fred Gleason <fredg@paravelsystems.com>
* Added an 'Export()' method to the 'rivwebpyapi' API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-12-07 11:35:54 -05:00

100 lines
3.0 KiB
Python
Executable File

#!%PYTHON_BANGPATH%
# export.py
#
# RivWebPyApi test script for Rivendell
#
# Test the Export Web API call
#
# (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import getpass
import rivwebpyapi
import sys
url='';
username=''
password=''
filename=''
cart_number=0
cut_number=0
audio_format=0
channels=2
sample_rate=48000
bit_rate=0
quality=0
start_point=-1
end_point=-1
normalization_level=0
enable_metadata=False
#
# Get login parameters
#
usage='export --url=<rd-url> --username=<rd-username> --filename=<str> --audio-format=<num> --channels=1|2 --sample-rate=<sps> --bit-rate=<bps> --quality=<qual> --start-point=<msec> --end-point=<msec> --normalization-level=<dbfs> [--enable-metadata] --cart-number=<num> --cut-number=<num> [--password=<passwd>]'
for arg in sys.argv:
f0=arg.split('=')
if(len(f0)==2):
if(f0[0]=='--url'):
url=f0[1]
if(f0[0]=='--username'):
username=f0[1]
if(f0[0]=='--password'):
password=f0[1]
if(f0[0]=='--filename'):
filename=f0[1]
if(f0[0]=='--cart-number'):
cart_number=int(f0[1])
if(f0[0]=='--cut-number'):
cut_number=int(f0[1])
if(f0[0]=='--audio-format'):
audio_format=int(f0[1])
if(f0[0]=='--channels'):
channels=int(f0[1])
if(f0[0]=='--sample-rate'):
sample_rate=int(f0[1])
if(f0[0]=='--bit-rate'):
bit_rate=int(f0[1])
if(f0[0]=='--quality'):
quality=int(f0[1])
if(f0[0]=='--start-point'):
start_point=int(f0[1])
if(f0[0]=='--end-point'):
end_point=int(f0[1])
if(f0[0]=='--normalization-level'):
normalization_level=int(f0[1])
if(len(f0)==1):
if(f0[0]=='--enable-metadata'):
enable_metadata=True
if(not password):
password=getpass.getpass()
if((not url)or(not username)):
print(usage)
sys.exit(1)
#
# Get the code list
#
webapi=rivwebpyapi.rivwebpyapi(url=url,username=username,password=password)
webapi.Export(filename=filename,cart_number=cart_number,cut_number=cut_number,
audio_format=audio_format,channels=channels,
sample_rate=sample_rate,bit_rate=bit_rate,quality=quality,
start_point=start_point,end_point=end_point,
normalization_level=normalization_level,
enable_metadata=enable_metadata)