logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
RichShumaker  
#1 Posted : Saturday, September 30, 2017 1:28:52 PM(UTC)
RichShumaker

Rank: Advanced Member

Groups: Registered
Joined: 4/4/2016(UTC)
Posts: 233
United States
Location: Not Los Angeles CA

Thanks: 86 times
Was thanked: 28 time(s) in 23 post(s)
I would love to have a timelapse record feature.
Something that saves pictures every X Frames.
It would be cool if it could also turn the frames into a video but that is a bonus not the primary request.

Case use for this is to record daily usage on my PC so I can look back at the day and see what happen.
I don't want to record or screen grab if I am on a PC for 4 hours BUT I do want to look back on what I did and how I did that.

Thanks for checking this out.

Rich Shumaker
Eric Pratt  
#2 Posted : Tuesday, October 10, 2017 11:39:17 AM(UTC)
Eric Pratt

Rank: Member

Groups: Registered
Joined: 11/25/2015(UTC)
Posts: 22
United States
Location: US

Thanks: 1 times
Was thanked: 12 time(s) in 6 post(s)
+1
Peter B  
#3 Posted : Tuesday, October 10, 2017 6:38:39 PM(UTC)
Peter B

Rank: Advanced Member

Groups: Registered
Joined: 4/14/2013(UTC)
Posts: 264
Man
Location: Australia

Thanks: 35 times
Was thanked: 38 time(s) in 36 post(s)
This could be implemented with a shortcut that calls the `take snapshot' function and sequentially numbers them with a user defined time interval.

The sequence could then be loaded and replayed. Could be a good closing sequence for a show.
RichShumaker  
#4 Posted : Tuesday, January 7, 2020 1:12:27 PM(UTC)
RichShumaker

Rank: Advanced Member

Groups: Registered
Joined: 4/4/2016(UTC)
Posts: 233
United States
Location: Not Los Angeles CA

Thanks: 86 times
Was thanked: 28 time(s) in 23 post(s)
This is a really old thread.
I am not sure how to tag Peter B to ask how to do what he is saying.

I am not sure how to trigger the shortcut every X seconds to take a snapshot.
Of course I didn't try to find this before I did a LIVE 24 hours!!!

How silly of me.
I am almost 8 hours in and I thought, wow a timelapse of the 24 hours would have been cool, d'oh!!!

Anyway if someone sees this in the future please let me know if you know how to use a shortcut to create the timelapse as described.

Thanks everyone.

Rich Shumaker
doggy  
#5 Posted : Tuesday, January 7, 2020 2:48:25 PM(UTC)
doggy

Rank: Advanced Member

Groups: Registered
Joined: 12/27/2012(UTC)
Posts: 5,073
Belgium
Location: Belgium

Thanks: 284 times
Was thanked: 920 time(s) in 759 post(s)
Interesting

what if there where a shortcut function called "SnapshotInput"
and we had a countdown to trigger that and restart the countdown for the next one
or if scripting was an option

;-)
thanks 1 user thanked doggy for this useful post.
stigaard on 1/7/2020(UTC)
Edy Santos  
#6 Posted : Friday, April 28, 2023 10:14:34 PM(UTC)
Edy Santos

Rank: Newbie

Groups: Registered
Joined: 5/19/2019(UTC)
Posts: 5
Man
Brazil
Location: Araçatuba

Thanks: 2 times
Was thanked: 8 time(s) in 3 post(s)
I managed to do the time lapse. I made a tutorial on my Youtube channel. Take the opportunity to subscribe, kkkk



SCRIPT:

dim snapshotid as integer = 1
while True
Console.Writeline(snapshotid)
dim snapshotfileext as string = ".png"
Console.Writeline(snapshotfileext)
dim snapshotname as string = snapshotid & snapshotfileext
Console.Writeline(snapshotname)
API.Function("SnapshotInput", Input:="1", Value:=snapshotname)
snapshotid = snapshotid + 1
Sleep(10000)
End While
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.