-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Albert Santoni
committed
Mar 16, 2015
1 parent
19de887
commit 32c7e81
Showing
4 changed files
with
79 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,79 @@ | ||
#!/bin/bash | ||
#------------------------------------------------------------------------------- | ||
# Copyright (c) 2011 Sourcefabric O.P.S. | ||
# | ||
# This file is part of the Airtime project. | ||
# http://airtime.sourcefabric.org/ | ||
# | ||
# Airtime is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Airtime 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 Airtime; if not, write to the Free Software | ||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
# | ||
#------------------------------------------------------------------------------- | ||
#------------------------------------------------------------------------------- | ||
# This script handles update cue-in/cue-out points for files that already exist | ||
# in Airtime's library. | ||
# | ||
exec 2>&1 | ||
airtime_silan_script="airtime-silan.py" | ||
api_client_path="/usr/lib/airtime/" | ||
|
||
virtualenv_bin="/usr/lib/airtime/airtime_virtualenv/bin/" | ||
. ${virtualenv_bin}activate | ||
|
||
export PYTHONPATH=${api_client_path} | ||
|
||
# Absolute path to this script | ||
SCRIPT=`readlink -f $0` | ||
# Absolute directory this script is in | ||
SCRIPTPATH=`dirname $SCRIPT` | ||
|
||
cd $SCRIPTPATH | ||
python ${airtime_silan_script} | ||
#!/usr/bin/python | ||
from configobj import ConfigObj | ||
from api_clients import api_client as apc | ||
|
||
import logging | ||
import json | ||
import os | ||
import sys | ||
import subprocess | ||
import traceback | ||
|
||
# create logger | ||
logger = logging.getLogger() | ||
|
||
# no logging | ||
ch = logging.StreamHandler() | ||
logging.disable(50) | ||
|
||
# add ch to logger | ||
logger.addHandler(ch) | ||
|
||
if os.geteuid() != 0: | ||
print 'Must be a root user.' | ||
sys.exit(1) | ||
|
||
# loading config file | ||
try: | ||
config = ConfigObj('/etc/airtime/airtime.conf') | ||
except Exception, e: | ||
print('Error loading config file: %s', e) | ||
sys.exit(1) | ||
|
||
api_client = apc.AirtimeApiClient(config) | ||
|
||
try: | ||
# keep getting few rows at a time for current music_dir (stor | ||
# or watched folder). | ||
subtotal = 0 | ||
while True: | ||
# return a list of pairs where the first value is the | ||
# file's database row id and the second value is the | ||
# filepath | ||
files = api_client.get_files_without_silan_value() | ||
total_files = len(files) | ||
if total_files == 0: break | ||
processed_data = [] | ||
total = 0 | ||
for f in files: | ||
full_path = f['fp'] | ||
# silence detect(set default queue in and out) | ||
try: | ||
command = ['silan', '-b' '-f', 'JSON', full_path] | ||
proc = subprocess.Popen(command, stdout=subprocess.PIPE) | ||
out = proc.communicate()[0].strip('\r\n') | ||
info = json.loads(out) | ||
data = {} | ||
data['cuein'] = str('{0:f}'.format(info['sound'][0][0])) | ||
data['cueout'] = str('{0:f}'.format(info['sound'][-1][1])) | ||
data['length'] = str('{0:f}'.format(info['file duration'])) | ||
processed_data.append((f['id'], data)) | ||
total += 1 | ||
if total % 5 == 0: | ||
print "Total %s / %s files has been processed.." % (total, total_files) | ||
except Exception, e: | ||
print e | ||
print traceback.format_exc() | ||
print "Processed: %d songs" % total | ||
subtotal += total | ||
|
||
try: | ||
print api_client.update_cue_values_by_silan(processed_data) | ||
except Exception ,e: | ||
print e | ||
print traceback.format_exc() | ||
print "Total %d songs Processed" % subtotal | ||
|
||
except Exception, e: | ||
print e | ||
print traceback.format_exc() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.