summaryrefslogtreecommitdiffstats
path: root/recording
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-17 17:45:05 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-17 17:45:05 +0200
commit56edabbfa6292d5d534afe02295f49a2554ca267 (patch)
treeada24556aed1e6ea4e22785d768916ef7e706235 /recording
parent7262eab94921d3b7453b657aa7bf109c9e6fee60 (diff)
fix(recording): Improve recording file names
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'recording')
-rw-r--r--recording/src/nextcloud/talk/recording/Service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/recording/src/nextcloud/talk/recording/Service.py b/recording/src/nextcloud/talk/recording/Service.py
index 4f575d05f..530d5c7f0 100644
--- a/recording/src/nextcloud/talk/recording/Service.py
+++ b/recording/src/nextcloud/talk/recording/Service.py
@@ -204,7 +204,7 @@ class Service:
BackendNotifier.started(self.backend, self.token, self.status, actorType, actorId)
- extensionlessFileName = f'{fullDirectory}/recording-{datetime.now().strftime("%Y%m%d-%H%M%S")}'
+ extensionlessFileName = f'{fullDirectory}/Recording {datetime.now().strftime("%Y-%m-%d %H-%M-%S")}'
recorderArgumentsBuilder = RecorderArgumentsBuilder()
recorderArguments = recorderArgumentsBuilder.getRecorderArguments(self.status, self._display.new_display_var, audioSinkIndex, width, height, extensionlessFileName)