You already have that in VLC.Just like to add my voice to the folks wishing for SMPTE time code display. We too, need to view video on Windows computers and display the time code. We DON'T need frame accuracy. Just hours, minute and seconds would be FINE for us!
Yes, there are. Mostly because it's hard to be totally frame-accurate and because all formats behave differently.there's not a lot of excuses for VLC lacking such a basic feature.
Code: Select all
function input_events_handler(var, old, new, data)
local secounds = vlc.var.get(vlc.object.input(), "time")
local ftwofour = math.floor(secounds*24)
local ftwofive = math.floor(secounds*25)
local frames = string.format("%d(24fps); %d(25fps)\n%2d(24fps); %2d(25fps)\n", ftwofour, ftwofive, ftwofive % 24, ftwofive % 25)
vlc.osd.message(frames) -- displays time on the screen in a video
end
Return to “VLC media player Feature Requests”
Users browsing this forum: No registered users and 7 guests