… replaced by ... :)
This commit is contained in:
parent
c1f40aba79
commit
588ed86775
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ def record_worker(stoprec, streamurl, target_dir, args):
|
||||||
verboseprint('Apply public write permissions (Linux only)')
|
verboseprint('Apply public write permissions (Linux only)')
|
||||||
os.chmod(filename, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP |
|
os.chmod(filename, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP |
|
||||||
stat.S_IROTH | stat.S_IWOTH)
|
stat.S_IROTH | stat.S_IWOTH)
|
||||||
verboseprint('Recording ' + args.station + '…')
|
verboseprint('Recording ' + args.station + '...')
|
||||||
while(not stoprec.is_set() and not conn.closed):
|
while(not stoprec.is_set() and not conn.closed):
|
||||||
target.write(conn.read(1024))
|
target.write(conn.read(1024))
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ def record(args):
|
||||||
print('Unkown station name: ' + args.station)
|
print('Unkown station name: ' + args.station)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
if streamurl.endswith('.m3u'):
|
if streamurl.endswith('.m3u'):
|
||||||
verboseprint('Seems to be an M3U playlist. Trying to parse…')
|
verboseprint('Seems to be an M3U playlist. Trying to parse...')
|
||||||
with urllib.request.urlopen(streamurl) as remotefile:
|
with urllib.request.urlopen(streamurl) as remotefile:
|
||||||
for line in remotefile:
|
for line in remotefile:
|
||||||
if not line.decode('utf-8').startswith('#'):
|
if not line.decode('utf-8').startswith('#'):
|
||||||
|
|
Loading…
Reference in a new issue