Compare commits
No commits in common. "fda08d7d0d9ce8ae636a9b75af5393b0a58b2934" and "9b10e525f0d7d76f90b97f9fa714af6a3f763ff0" have entirely different histories.
fda08d7d0d
...
9b10e525f0
3 changed files with 5 additions and 9 deletions
|
@ -35,7 +35,6 @@ services:
|
||||||
build: .
|
build: .
|
||||||
volumes:
|
volumes:
|
||||||
- .:/src/techrec
|
- .:/src/techrec
|
||||||
- rec:/rec
|
|
||||||
- ./docker/output:/src/output
|
- ./docker/output:/src/output
|
||||||
ports:
|
ports:
|
||||||
- 8000:8000
|
- 8000:8000
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
import logging
|
||||||
|
|
||||||
AUDIO_INPUT = "http://storage/ror"
|
AUDIO_INPUT = "http://storage/ror"
|
||||||
# decomment this if you want to test with local audio source
|
|
||||||
# AUDIO_INPUT = "/rec/ror"
|
|
||||||
AUDIO_OUTPUT = "/src/output"
|
AUDIO_OUTPUT = "/src/output"
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
HOST = "0.0.0.0"
|
HOST = "0.0.0.0"
|
||||||
|
|
|
@ -25,10 +25,8 @@ 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(
|
local = await download(path,
|
||||||
path,
|
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'])
|
||||||
basic_auth=get_config()['AUDIO_INPUT_BASICAUTH'],
|
|
||||||
)
|
|
||||||
return local
|
return local
|
||||||
return path
|
return path
|
||||||
|
|
||||||
|
@ -124,8 +122,7 @@ 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)
|
||||||
else:
|
intervals.append((file, start_cut, end_cut))
|
||||||
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