1
0
Fork 0
mirror of https://github.com/Findus23/BBBtoVideo.git synced 2024-09-19 14:03:44 +02:00
BBBtoVideo/config.sample.py
2020-11-05 19:49:59 +01:00

21 lines
615 B
Python

from pathlib import Path
playback_url = "https://bbb.example.com/"
meeting_id = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaa"
data_dir = Path("./data")
fps = 5 # frames per second
pointer_size = 100
start = 10 # in seconds, set to None to start from the beginning
end = 100 # in seconds, set to None to convert until the end of the video
hide_pointer_if_offscreen = False
# set to "previous" or "next" for raw position data
# set to "linear" for linear interpolation
# set to "quadratic" for quadratic interpolation (needs hide_pointer_if_offscreen = False)
interpolation_method = "quadratic"