Compare commits

..

2 commits

Author SHA1 Message Date
fda08d7d0d
Add test infra for local audio source 2021-09-17 11:06:05 +02:00
75c2713536
Fix logic if failing to download 2021-09-17 11:02:07 +02:00
3 changed files with 9 additions and 5 deletions

View file

@ -35,6 +35,7 @@ services:
build: .
volumes:
- .:/src/techrec
- rec:/rec
- ./docker/output:/src/output
ports:
- 8000:8000

View file

@ -1,6 +1,6 @@
import logging
AUDIO_INPUT = "http://storage/ror"
# decomment this if you want to test with local audio source
# AUDIO_INPUT = "/rec/ror"
AUDIO_OUTPUT = "/src/output"
DEBUG = True
HOST = "0.0.0.0"

View file

@ -25,8 +25,10 @@ async def get_timefile_exact(time) -> str:
)
if path.startswith("http://") or path.startswith("https://"):
logger.info(f"downloading: {path}")
local = await download(path,
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'])
local = await download(
path,
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'],
)
return local
return path
@ -122,7 +124,8 @@ async def create_mp3(
file = await get_timefile(begin)
except Exception as 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):
raise OSError("file '%s' already exists" % outfile)
for path, _s, _e in intervals: