
Time2Clipboard
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This extension copies the current time to the clipboard by using different hotkeys.
Windows only. VLC 2.0.x required.
Useful e.g. for transcription.
Examples:
Person A (00:12):
Person B (01:23:45):
You could use AutoHotkey for global hotkeys. E.g. to automatically copy the time and paste it in Microsoft Word:
!c:: ;use alt-c as global hotkey (change here)
SetTitleMatchMode 2
If WinExist("Microsoft Word") and WinExist("VLC media player") {
WinActivate, VLC media player
WinWaitActive, VLC media player
Send, +c ;send shift c to VLC (change here)
WinActivate, Microsoft Word
WinWaitActive, Microsoft Word
Send, ^v
}
return
giannife
9 months ago
Report
yvof
3 years ago
Can you explain exactly what i need to do with this script to make it work for me? I'm a real dummy when it comes to technology, so i would appreciate it if you could be very thorough :)
Thanks!
Report
ckattie
3 years ago
is it possible to give global hotkeys for this? How?
How, and what should I modify to get the "video filename, return, ---" to the clipboard if its possible. ( for markdown)
Report
mederi
3 years ago
Report
yvof
3 years ago
Can you explain exactly what i need to do with this script to make it work for me? I'm a real dummy when it comes to technology, so i would appreciate it if you could be very thorough :)
Thanks!
Report
ckattie
3 years ago
Report
yvof
3 years ago
Can you please explain where is the extension folder and what I need to do exactly to get the code working?
Thanks!
Report
ljlmarcon
1 year ago
Report
mederi
3 years ago
Report
ckattie
3 years ago
Report
ckattie
3 years ago
Report