Time v3.2

VLC Extensions by mederi 231 comments

Find following line in "time_intf.lua":
local duration = vlc.input.item():duration()
Then insert next new line there:
local dt=duration - Jun 21 2019
Time v3.2

VLC Extensions by mederi 231 comments

Just store the duration in a new variable (dt) before it changes a number value to a formatted string:
local duration = vlc.input.item():duration()
local dt=duration
Then you can use your calculation: addend-dt+et (instead of et+addend). - Jun 20 2019
Time v3.2

VLC Extensions by mederi 231 comments

It is not supported in VLC. You can use an external screenshot taker (like IrfanView - hotkey C; you can switch VLC to Minimal Interface Ctrl+H). - Jun 06 2019
Time v3.2

VLC Extensions by mederi 231 comments

The code for [E+seconds] tag ([E+49830]):
local addend=tonumber(string.match(osd_output,"%[E%+(.-)%]"))
if addend then
osd_output = string.gsub(osd_output, "%[E%+.-%]", tostring(TIME_Time2string(et+addend, 0, not TIME_Enoms)))
end

Insert the code right above following line in "time_intf.lua":
local fps=tonumber(string.match(osd_output,"%[E(.-)%]")) - Jun 05 2019
Time v3.2

VLC Extensions by mederi 231 comments

Please find my recent reply to frob. - May 21 2019
Time v3.2

VLC Extensions by mederi 231 comments

There is a workaround using marquee filter reading a text file (Tools > Preferences > Show settings=All > Video \ Subtitles/OSD
: [v] Marquee display
\ Marquee: Text file [D:\vlc-3.0.2+\portable\timemarquee.txt] / Position / Font / Misc).

Edit the "time_intf.lua" in a text editor, find following line:
vlc.osd.message(TIME_Decode_time_format(), 1111111111, TIME_osd_position)
Replace it with following new lines of code:
local f = vlc.io.open(vlc.config.userdatadir().."\\timemarquee.txt", "w")
if f then
f:write(TIME_Decode_time_format())
f:close()
end

I could add this option in Time extension in the future version. - May 21 2019
Time v3.2

VLC Extensions by mederi 231 comments

How would you handle all other languages? The "Frame rate" key is translated according to selected interface language in VLC. - May 08 2019
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

Current implementation of extension scripts does not allow too much dynamics and so events could happen mostly only by clicking buttons within dialog box. Some more complicated solution, a workaround, is possible with the usage of interface script or an external helper besides the extension script. - Mar 30 2019
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

I am Windows user, but it should be possible. Try following command line in your osx:
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") - Mar 30 2019
Time v3.2

VLC Extensions by mederi 231 comments

You can edit the "time_intf.lua" script in a text editor. Find the line:
osd_output = string.gsub(osd_output, "%[E.-%]", math.floor(et * fps))
Edit the math.floor() function there if it make sense for you:
osd_output = string.gsub(osd_output, "%[E.-%]", math.floor(et * fps % fps)) - Feb 19 2019
Sampler PG

VLC Extensions by mederi 36 comments

Just search Google: how to run windows applications on android. You could try to run a portable VLC (no installation, just a decompressed VLC with manually created "portable" folder in VLC folder near vlc.exe) in Wine https://www.winehq.org/
I am not VLC developer, I have just written this Lua script for VLC. You can file your bug reports & feature requests at https://trac.videolan.org/vlc/ - Jan 28 2019
Sampler PG

VLC Extensions by mederi 36 comments

VLC Extension Lua scripts are not supported in VLC for Android. You could try whether it is possible to run VLC for PC on Android (I have Googled a bit: Wine for Android?).
You should try the extension in VLC on PC. The Sampler (PG) generates a playlist with playlist items containing star-time/stop-time advanced VLC options. Then you can save such a playlist with relative paths (VLC 3+) if you save it in the same local folder. Then you could try to run such a playlist with the same folder of media files in VLC for Android. You could let me know, whether VLC for Android supports playlists with advanced VLC options. - Jan 27 2019
Time v3.2

VLC Extensions by mederi 231 comments

time_intf.lua - Jan 17 2019
Time v3.2

VLC Extensions by mederi 231 comments

Copy the "time_inft.lua" into "intf" folder, not into "extensions"! Then it works. - Jan 17 2019
Time v3.2

VLC Extensions by mederi 231 comments

It is known that VLC is not frame accurate. The split-second jumps are better in some video formats and worse in others (like variable frame rate). The [Efps] tag just multiplies time value (returned by VLC) with the provided fps value and the result is rounded down: math.floor(et * fps). You can check/ask VLC, whether it gets better in VLC 4. - Jan 05 2019
Time v3.2

VLC Extensions by mederi 231 comments

You can enable an audio visualization in VLC: Audio > Visualization >. You can set up visualizations in VLC preferences: Tools > Preferences > Show settings=All > Audio \ Visualizations - Dec 28 2018
Time v3.2

VLC Extensions by mederi 231 comments

You can use an external screenshot taker (like IrfanView - hotkey C on Windows). - Nov 26 2018
Time v3.2

VLC Extensions by mederi 231 comments

The refresh rate in the script is higher than VLC updates the time value. I think demuxers are responsible for this. - Nov 15 2018
Time v3.2

VLC Extensions by mederi 231 comments

You should follow the instructions (Simple instructions 1, 2, 3) in the description here. - Oct 02 2018
Time v3.2

VLC Extensions by mederi 231 comments

I think a marquee subfilter could be used to display an osd text from a Lua script. - Sep 30 2018
Time v3.2

VLC Extensions by mederi 231 comments

Screenshot (Video > Take Snapshot (Shift+s))? - Sep 11 2018
Time v3.2

VLC Extensions by mederi 231 comments

Thanks - Sep 07 2018
Time v3.2

VLC Extensions by mederi 231 comments

Thanks - Sep 01 2018
Time v3.2

VLC Extensions by mederi 231 comments

The options has been implemented in Time v3.2 - Aug 27 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

Custom hotkeys are not available in addons in current VLC version. There are only dialog box button hotkeys (Alt+b) available within Qt GUI. You could try to use an external helper like AutoHotkey on Windows. - Aug 24 2018
Time v3.2

VLC Extensions by mederi 231 comments

It is one of the main features of this extension, but I understand
that most users do not need the extra information about milliseconds. I will implement the option in the Extension script in the future. For now you can edit the "time_intf.lua" script file (Time v3.1) in a text editor and replace "true" with "false" in line 131:
elapsed_time = TIME_Time2string(elapsed_time, 0, false) - Aug 20 2018
Time v3.2

VLC Extensions by mederi 231 comments

Hi pablo_kks! Please test the new Time v3.1: https://addons.videolan.org/p/1255145/ - Aug 19 2018
Time v3.2

VLC Extensions by mederi 231 comments

Now I can prepare an update. Thank you for cooperation.
Next I would like to ask you to test also my another extension "Jump to time (Previous frame)" on your Mac. There I have implemented a (sub-)menu, too. Closing the "Jump to time (Previous frame) v3" dialog box does not deactivate the extension, it is only hidden and ready to be shown again in extension's menu ("Show dialog", "Help", "Deactivate") in VLC menu on Windows/Linux. Thanks. - Aug 05 2018
Time v3.2

VLC Extensions by mederi 231 comments

So there is no extension's menu in VLC menu after activation of the extension on Mac. VLSub extension also uses the menu, but it has "Show help" and "Show config" button to acces another 2 dialog boxes. Then I will add the "Settings" button in my extension, too. Here I have uploaded a screenshots of VLC so you can see what I mean:
http://postimg.cz/images/xTAsF.png
Do you really not remember the "Settings" dialog box when you first activated the extension right after its installation? Please edit the extension scipt "time_ext.lua", last line (145) "bt_help = ..." within "function create_dialog() ... end" and insert next 2 new lines there for "Reset" and "Settings" buttons:
dlg:add_button("Reset", function() vlc.config.set("bookmark10", "") end,1,5,1,1)
dlg:add_button("Settings", function() trigger_menu(2) end,2,5,1,1)
Then activate the extension, click the "Reset" button, then close and reopen VLC and see whether there will automatically appear the "Settings" dialog box after activation of the extension. Please test it whether it works to enable/disable the Interface script.

As for the messages, here is the screenshot (Windows Vista):
http://postimg.cz/images/xTTAH.png
I searched the VLC forum for Mac:
https://forum.videolan.org/viewtopic.php?f=12&t=122697
So probably you do not need to worry about the messages verbosity level at all. If you see the debugging logs there (main debug: ..., lua debug: ...), then it is the verbosity level 2 (debug). If you launch VLC from the terminal, then you can use the VLC option " --verbose=2" or " -vvv" there. You can open the messages window before activation of the extension and then you can watch all the situation there. - Jul 29 2018
Time v3.2

VLC Extensions by mederi 231 comments

I am glad we have the solution for the Interface script.

As for the Extension script, does the "Time v3 (intf)" dialog box window like in the picture at the top of the page here appear on the screen? It is the control panel for the running Interface script. Does it work? Can you customize the "Time format" during the playback of a video and is it remembered when you close VLC and play a video next time? You can watch messages for any errors/warnings (⌘+Shift+m, verbosity level 2=debug) when you click the "START!" button there.
Then if the "Time v3 (intf)" dialog box window is on the screen, do not close it and check again the VLC menu where you activated the Extension. Now the Extension "Time v3 (intf) > ..." should contain submenu consisting of "Control panel", "Settings" and "Deactivate" options. Here you can activate the "Settings" dialog box containing "[v] Enable Interface" checkbox, "[looper_intf]" input field and the buttons: "SAVE" and "CANCEL". The saving button should set the settings automatically for you. Please again watch the messages when you click it.
The "Settings" dialog box should automatically appear only on the very first activation of the Extension. Next time whenever you activate the Extension, only the "Control panel" should appear on the screen and the "Settings" are again available in Extension's submenu in VLC menu (VLC > Extensions > Time v3 (intf) > Settings). Is there any sumbenu at all after activation of the Extension when there is a dialog box on the screen? - Jul 28 2018
Time v3.2

VLC Extensions by mederi 231 comments

Does the Extension not work ( VLC > Extensions > Time: 2 dialog boxes: Settings and Control panel)?
Please try to edit the original Interface script "looper_intf.lua" and insert a following new line somewhere on the top whether it helps to recognize the dot in numbers as decimal separator:
os.setlocale("C", "all") - Jul 27 2018
Time v3.2

VLC Extensions by mederi 231 comments

The extension script "time_ext.lua" installed in "\lua\extensions\" and available in VLC menu can help you to set appropriate VLC settings on its first run only (VLC > Extensions > Time v3 (intf)). Next time it is available in the extensions's submenu after activation of the extension (VLC > Extensions > Time v3 (intf) > Settings). I hope it works. I need to improve this so it could always appear automatically if the interface script is not active. Otherwise you can set the settings ("luaintf", "looper_intf") manually in VLC preferences as described in some previous post here and in the main description (**) of the extension. Plese let me know whether it works. Thank you for cooperation. I will need your further assistance. - Jul 25 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

First of all, if you use the new VLC 3, then you have to download and install the updated script (v3) manually from here. Then the usage is simple. There is more help available in extension's submenu in VLC menu after activation of the extension (when the dialogbox appears go back in VLC menu View > Jump to time > Help). - Jul 25 2018
Time v3.2

VLC Extensions by mederi 231 comments

Are you sure if you just use the integer value "1" instead of "0.1" on the line 49: "Sleep(1)", that you get an error on the same line and not on a different one?
Could this error mean a locale issue and so not appearing on all Macs only on some of them, a decimal separator issue? What happens if you replace dot by comma in numbers (like 0.1 --> 0,1)? - Jul 25 2018
Time v3.2

VLC Extensions by mederi 231 comments

Thank you. I can see that the location of the script is correct and the VLC preferences settings or CLI options activating the script are correct, too (line 76 in the logs).
There is an error (line 83): "lua error: Error loading script .../Library/Application Support/org.videolan.vlc/lua/intf/looper_intf.lua:49: malformed number near '0.1'".
I do not know what it really means. Line 49 in the "looper_intf.lua" code is "Sleep(0.1)" function call. Could you try to edit the script in a text editor? Try to change the number that function call: "Sleep(.1)" or "Sleep(1)". Then check the logs whether it helped a bit. Then you could try to move "function Sleep(st) ... end" in front of "function Looper() ... end" so it is defined first before it is called.
The script works well in Windows and Linux, just not in the macOS. I need some clues to solve the issue or to report a VLC bug. - Jul 22 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

Thanks. - Jul 21 2018
Time v3.2

VLC Extensions by mederi 231 comments

ok - Jul 21 2018
Time v3.2

VLC Extensions by mederi 231 comments

There should be more logs in the vlc_log.txt file. - Jul 21 2018
Time v3.2

VLC Extensions by mederi 231 comments

Interface script location:
~/Library/Application/Support/org.videolan.vlc/lua/intf/looper_intf.lua
Then run VLC from command line (logging to vlc_log.txt file + interface script activation):
/Applications/VLC.app/Contents/MacOS/VLC --verbose=2 --file-logging --logfile=vlc_log.txt --extraintf=luaintf --lua-intf=looper_intf
Check the log file, post it at pastebin.com and then paste the link here. - Jul 18 2018
Time v3.2

VLC Extensions by mederi 231 comments

Mac is always different. You could help me to debug the sript on your Mac. You can check the logs with verbosity level 2=debug (⌘+Shift+m, https://wiki.videolan.org/Vlc_MacOS_Window/). Better if you check the logs from the start of VLC in a log file (VLC menu > Preferences > Show All > Advanced > Logging). Perhaps there should be just "lua" instead of "luaintf" in VLC preferences (>Interface > Main interfaces > Lua > Extra interface modules [luaintf] or just [lua]?). Please try it. - Jul 15 2018
Time v3.2

VLC Extensions by mederi 231 comments

I cannot test it on Mac as I am on Windows. It is important to copy/install the looper_intf.lua script file in the proper directory for interface scripts \lua\intf\. Then you have to activate the script in VLC. The extension script time_ext.lua installed in \lua\extensions\ and available in VLC menu can help you to set appropriate VLC settings on its first run. Later it is again available in VLC menu in the extensions's submenu. You can also manually check settings in VLC preferences (luaintf, looper_intf > some screenshots for different addon but lua seetings are visible there above the marked ones: https://hobbyistsoftware.com/VLCSetup-mac-manual). Successfully activated interface script is already displaying the time in a playing video or you simply check the activity of the interface script in logs in VLC menu (like in VLC for Windows: Tools > Messages). If the interface script is running in VLC, you can control it with the extension script in VLC menu. - Jul 14 2018
Sampler PG

VLC Extensions by mederi 36 comments

I cannot reproduce the issue in VLC 3.0.2 (Vista 32-bit). There is just a black screen only in some films for a split of a second. There is really nothing I can do about it. Perhaps it depends on a video format you are playing. You can report the :start-time VLC option issue and provide a video samples at https://trac.videolan.org/vlc - May 09 2018
Remember Playing Now

VLC Extensions by lucretiusfan 4 comments

I recommend you to upgrade your script to use vlc.io if it is available (introduced by VLSub included in VLC 3.0.2) instead of Lua's standard io functions. It solves the issue with non-ASCII characters in the path on some systems. This script and similar ones can work properly on all systems from now. - Apr 30 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

Does the updated script v3 not work on OSX? You need to download it manually here. It is not available through the Addons Manager yet. Then there is a problem with "Frame rate" key, as it depends on VLC interface language. The key is translated in different languages. Therefore I take the first number value for "Frame rate". It works in most cases. - Feb 16 2018
Time v3.2

VLC Extensions by mederi 231 comments

I cannot reproduce the issue. I have no problem here with default settings in VLC 3 (win32.7z package, portable - "portable" subfolder within vlc folder). Try to reset preferences. What OS, VLC version? You could further investigate the issue: video format, different video output module, enable/disable hardware acceleration, check the logs. You can wait for VLC 3.0.1 whether it gets better or not. Then probably you need to file a bugreport at https://trac.videolan.org/vlc - Feb 14 2018
Time v3.2

VLC Extensions by mederi 231 comments

Fixed for VLC 3. - Feb 11 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

You can use some external helper/program like DeskPins. - Jan 29 2018
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

The button hotkeys work only in active/focused dialogbox window. It is not possible to improve the script the way you want it. The scripting VLC in Lua is very limited and require further improvements. You could try to use Autohotkey, the external helper for Windows, to send keystrokes to Jump to time window. - Dec 13 2017
Time v3.2

VLC Extensions by mederi 231 comments

Please check manually the enabled interfaces in VLC preferences (https://hobbyistsoftware.com/VLCSetup-win-manual) where the "[v] Web" is checked (on the first picture) and also the "[v] Lua interpreter" for the custom interface script of Time (the second picture: "Lua interface [looper_intf]" instead of "dummy"), so there are [luaintf:http] in the text input field there ("lua" is wrong, it must be "luaintf" string!). Please let me know. - Dec 06 2017
Jump to time Previous frame v3

VLC Extensions by mederi 57 comments

So this is what you need. O.K. - Nov 10 2017