You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fixed a bug where `_timestamped.txt` files would incorrectly drop the hour from timestamps (e.g., a timestamp of `1:23:45` would appear as `[23:45]`).
225
+
- Introduced dynamic timestamp formatting, which is on by default. Timestamps for moments under the one-hour mark are now shown in a shortened `[mm:ss]` format. Once a transcription passes the one-hour mark, timestamps automatically switch to the full `[hh:mm:ss]` format within the same file.
226
+
- This behavior is controlled by the new `shorten_timestamps_under_one_hour` flag in `config.ini` and is set to `true` by default. Set it to `false` to force the full `[hh:mm:ss]` format for all timestamps.
227
+
- Added a log message to confirm which formatting mode is active when generating the timestamped file.
'send_timestamped_txt': config.getboolean('TranscriptionSettings', 'send_timestamped_txt', fallback=False), # ADDED, default to False
51
+
'shorten_timestamps_under_one_hour': config.getboolean('TranscriptionSettings', 'shorten_timestamps_under_one_hour', fallback=True), # ADDED THIS LINE in v0.1717
0 commit comments