
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
Jump to time (Previous frame) is VLC Extension that can:
- jump to a desired time in a played media;
- jump forward/backward by a desired time length;
- split-second jumps imitating previous/next frame;*
- show actual playback time with milliseconds;
- use time longer than 24 hours;
- repeat a desired scene again and again (A-loop);
- convert time.
It cannot make a cup of coffee for you :-)
Automatic DOWNLOAD & INSTALLATION of the extension is now (VLC-2.2 only, not VLC 3) available through the Addons Manager in VLC menu (Tools > Plugins and extensions).
Manual DOWNLOAD & INSTALLATION:
DOWNLOAD:
- click the download button below
- save the .zip file
INSTALLATION:
- extract (unzip) the .lua file and put it in VLC subdir /lua/extensions, by default:
* Windows (all users): %ProgramFiles%\VideoLAN\VLC\lua\extensions\
* Windows (current user): %APPDATA%\VLC\lua\extensions\
* Linux (all users): /usr/lib/vlc/lua/extensions/
* Linux (current user): ~/.local/share/vlc/lua/extensions/
* Mac OS X (all users): /Applications/VLC.app/Contents/MacOS/share/lua/extensions/
* Mac OS X (current user): /Users/%your_name%/Library/Application Support/org.videolan.vlc/lua/extensions/
(create directories if they don't exist)
- Restart VLC or just reload extensions (Tools > Plugins and extensions > Active Extensions tab: Reload extensions button).
USAGE:
Then you simply start the extension by going to the "View" menu or "Vlc > Extensions" on Mac OS X.
v3.0 (11.2.2018) 33721 3 years ago
- fixed time in microseconds for VLC 3;
- set 1/FPS as default value;
v3.0 (11.2.2018) 33721 3 years ago
- fixed time in microseconds for VLC 3;
- set 1/FPS as default value;
5 years ago
v2.1 (28.9.2015) 24717
- compact size layout of the dialog box (a trick with right buttons over spanned text input fields) caused troubles on OS X => no spanning now
- removed ampersands from buttons on OS X as they do not work as hotkeys there
- added "Pause/Play" button
Jump to time 2.0 (11.5.2015) 22382
- reworked and renamed "Previous frame" extension
- libvlc hotkeys (unsupported callbacks since VLC-2.1) replaced with dialog box hotkeys at least
Previous frame 1.0 (10.1.2013)
giannife
9 months ago
"You can have a button in a dialog box window to log the time in a file. I can provide that piece of code for another VLC Extension: Jump to time (Previous frame). Then you can try to use Autohotkey helper to press that button. I have already instructed a user in comments how to copy the time to clipboard and so it can go to a file, too. If you are interested then write a brief comment on Jump to time page."
Thanks for your continuous dedication to these very helpful projects.
Report
giannife
9 months ago
Report
mederi
9 months ago
local timestring = Time2string(vlc.var.get(input,"time"))
Then inser next new lines of code there:
local f = vlc.io.open(vlc.config.userdatadir().."/vlc_jtt_log.txt", "a+")
if f then
-- timestring without milliseconds:
f:write(string.match(timestring,"(.*),").."\r\n")
f:close()
end
Report
mederi
9 months ago
Report
malkster
9 months ago
Report
why-pling
1 month ago
Report
mederi
9 months ago
Report
shiho
1 year ago
ex1: 0:11 -> 3275:33:23,000
ex2: 3:37 -> 60486:25:27,000
I need to pick time to create subtitle files and in need of help to fix this issue. I used this about two years ago and never had a problem before.
Thanks so much for your help in advance!!
Report
mederi
1 year ago
Report
miguelele
1 year ago
Currently I am using this url schema: "http://:[email protected]:8080/requests/status.json?command=seek&val=160".
The value (160 in my example) must be an integer so I can only go to exact seconds.
Regards.
Report
jdiazmeco
1 year ago
Report
mederi
1 year ago
echo 00:00:00,000|pbcopy
If it works, then you can edit the lua script in a text editor and insert following line within function click_Get_time():
os.execute("echo "..Time2string(vlc.var.get(input,"time")).."|pbcopy")
Report
jdiazmeco
1 year ago
Report
rhaven
1 year ago
Report
mederi
1 year ago
Report
Sonario648
2 years ago
Report
mederi
2 years ago
Report
Sonario648
2 years ago
Report
Achille
2 years ago
But what I can't do is this: How can I indicate to the add-on an exact time to jump up to or to jump back to. Thanks in advance. Greetings from Cameroon.
Report
mederi
2 years ago
Report
adamearle
2 years ago
1. Time Jumper
2. Time Jog
3. Time Shuffle
Loven this.
Report
mederi
2 years ago
Report
enfilade
2 years ago
Report
enfilade
2 years ago
Report
abro656
3 years ago
if k1=="Frame rate" then
if tonumber(v1) then
textinput_jump:set_text(1000000/v1)
else
textinput_jump:set_text(33333.33333333)
end
return
end
--if tonumber(v1) then textinput_jump:set_text(1/v1) return end
Report