Fix logic if failing to download
This commit is contained in:
parent
9b10e525f0
commit
75c2713536
1 changed files with 6 additions and 3 deletions
|
@ -25,8 +25,10 @@ async def get_timefile_exact(time) -> str:
|
||||||
)
|
)
|
||||||
if path.startswith("http://") or path.startswith("https://"):
|
if path.startswith("http://") or path.startswith("https://"):
|
||||||
logger.info(f"downloading: {path}")
|
logger.info(f"downloading: {path}")
|
||||||
local = await download(path,
|
local = await download(
|
||||||
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'])
|
path,
|
||||||
|
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'],
|
||||||
|
)
|
||||||
return local
|
return local
|
||||||
return path
|
return path
|
||||||
|
|
||||||
|
@ -122,7 +124,8 @@ async def create_mp3(
|
||||||
file = await get_timefile(begin)
|
file = await get_timefile(begin)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Error while retrieving file: %s", e)
|
logger.error("Error while retrieving file: %s", e)
|
||||||
intervals.append((file, start_cut, end_cut))
|
else:
|
||||||
|
intervals.append((file, start_cut, end_cut))
|
||||||
if os.path.exists(outfile):
|
if os.path.exists(outfile):
|
||||||
raise OSError("file '%s' already exists" % outfile)
|
raise OSError("file '%s' already exists" % outfile)
|
||||||
for path, _s, _e in intervals:
|
for path, _s, _e in intervals:
|
||||||
|
|
Loading…
Reference in a new issue