vivek-nexus / transcriptonic

Simple Google Meet transcripts. Private and open source.
https://chromewebstore.google.com/detail/ciepnfnceimjehngolkijpnbappkkiag
MIT License
40 stars 13 forks source link

add time since record start marker to the output #6

Closed romantolkachyov closed 6 months ago

romantolkachyov commented 6 months ago

Hi! This adds [HH:ss] marker right before the user name in the output. Looks useful in general if you want to build navigation over video etc.

vivek-nexus commented 6 months ago

@romantolkachyov could you explain in more detail on why you would prefer relative timestamp (time elapsed since start of meeting) over absolute timestamp?

romantolkachyov commented 6 months ago

@vivek-nexus sorry for the long reply. I used relative timestamp because that's my target format. But you're right, it would probably be much better to store absolute timestamps in general and calculate relative timestamp if needed on complete transcription. On the other hand, video subtitles use relative format too.

vivek-nexus commented 6 months ago

@romantolkachyov understood the use case you are looking at. Video subtitle files have a very specific and singular purpose, which justifies the use of relative timestamp. I will stick to absolute timestamps, to prevent loss of information at source.

For your use case, may be you could write a local script to convert absolute timestamps to relative ones, along with file format conversion from txt to srt, if needed?

romantolkachyov commented 6 months ago

Sure, it works