diff --git a/app/recorders/tunein.py b/app/recorders/tunein.py index 2386d5b..64c595c 100644 --- a/app/recorders/tunein.py +++ b/app/recorders/tunein.py @@ -102,7 +102,7 @@ async def _grab(self): # append to file logger.debug(f'Grabbing segment: {segment.timestamp}') - working_dir = Path('/data/MSNBC/') + working_dir = Path('/volume2/docker/RadioRecorder/MSNBC/') working_dir.mkdir(parents=True, exist_ok=True) path = working_dir.joinpath(filename) async with aiofiles.open(path, 'ab') as file: @@ -179,12 +179,14 @@ def _get_sleep_time(self, lines: [str]) -> int: :return: sleep time, which determines how long to wait between starting the next iteration """ - available_duration = None - for line in lines: - if line.startswith('#EXT-X-COM-TUNEIN-AVAIL-DUR:'): - try: - available_duration = float(line.replace('#EXT-X-COM-TUNEIN-AVAIL-DUR:', '')) - except ValueError: - pass - break - return available_duration * 4 // 5 if available_duration else self.DEFAULT_SLEEP_TIME + return 60 + + # available_duration = None + # for line in lines: + # if line.startswith('#EXT-X-COM-TUNEIN-AVAIL-DUR:'): + # try: + # available_duration = float(line.replace('#EXT-X-COM-TUNEIN-AVAIL-DUR:', '')) + # except ValueError: + # pass + # break + # return available_duration * 4 // 5 if available_duration else self.DEFAULT_SLEEP_TIME