Recent Posts

Pages: [1] 2 3 ... 10
1
Chronos User Discussion / Re: Collection of shots with the Chronos 2.1HD
« Last post by B.H.V on April 19, 2025, 06:28:00 AM »
Yes, I'm using Topaz Video AI for upscaling from HD to UHD.

Yes, I also use Topaz VEAI on my 720P footage from my Chronos 1.4 to 2K with great results most of the time! What settings do you use usually in Topaz VEAI?
2
Chronos User Discussion / Re: Collection of shots with the Chronos 2.1HD
« Last post by Huckleberry on April 19, 2025, 05:37:34 AM »
Yes, I'm using Topaz Video AI for upscaling from HD to UHD.
3
Chronos User Discussion / Re: Collection of shots with the Chronos 2.1HD
« Last post by B.H.V on April 18, 2025, 01:04:50 PM »
This is great! Are you using Topaz VEAI to upcsale to 4K?
4
Chronos User Discussion / Re: Savingdirectory & Triggerdelay (segmented)
« Last post by hummingbirdography on April 15, 2025, 03:45:38 PM »
Personally I haven't had any luck with saving to a subdirectory through Chronos API 0.7.0. You might have to settle for something like a file naming convention which resembles the directory structure you'd like.

As for the trigger delay, I think the 'recTrigDelay' parameter is what you're looking for:
https://support.krontech.ca/en/articles/9903772-chronos-0-7-0-api-documentation#h_25f662a04e

You could inspect the network traffic of the "Settings" tab of the on-board web interface for some tips on how that works.
5
Chronos User Discussion / Savingdirectory & Triggerdelay (segmented)
« Last post by oadu on April 15, 2025, 12:59:13 AM »
Hi,

is there a parameter for the API to change the directory of saving, while having an nfs-device?
Furthermore is there a parameter to change the trigger delay? All my frames of each segment have to be captured after the triggersignal or isn't it necessary to change anything to achieve my goal?

Thanks!
 
6
Chronos User Discussion / Collection of shots with the Chronos 2.1HD
« Last post by Huckleberry on April 14, 2025, 08:29:13 AM »
Hello good people,
over the last 5 years I've been working with the Chronos 2.1HD camera. I finally edited them into a short film.
I thought I might share this with you.

Here's the link:
https://www.youtube.com/watch?v=EZ77NJRCSHo

Most of the shots are shots with 1,000 fps, some are in 1,350 fps.
I used very fast lenses, as it takes a lot of light to achieve a decent exposure.
Post was done in Davinci Resolve.

I hope you like it!
7
Chronos User Discussion / Backfocus with Computar 12.5-75 on Chronos 1.4
« Last post by grprahl on April 07, 2025, 06:39:57 PM »
I just picked up a Computar 12.5-75 as an improvement to the fixed 16mm 1.4 I'd been using. The first thing I noticed is that the lens seems to be highly varifocal. As in, if I set the backfocus properly at one focal length, by the time I adjust the zoom/focal length even by a small amount the whole focus range has shifted so far I need to readjust the backfocus again. I'm curious if that's normal with this lens on the 1.4. Seems odd to have to adjust backfocus every time you change the zoom.
8
Software Dev / Re: API bugs
« Last post by hummingbirdography on April 03, 2025, 01:04:32 PM »
1. My biggest issue is when saving the file to the SD card. I'm hitting the "startFilesave" endpoint, and then trying to use the "playbackLength" and "playbackPosition" parameters to track progress.
  a. First I need to get "playbackLength" in order to setup progress monitoring (progress will be currentPlaybackPosition / playbackLength). This value is not correct. When I try to save the file from the buffer into the SD card, "playbackLength" is stale, and appears to be the value from the previous video I saved. If I try to save the video again, it appears to be correct.
  b. For the "playbackPosition", I tried hooking into to the Server Sent Events to monitor this, but it doesn't seem to throw notifications when this value changes. I at least do get an event when the state changes away from "filesave", so I know when the save process has finished. But according to the docs, it seems like I should be getting these events when anything changes.

playbackPosition does not notify, therefor polling is indeed required for tracking the save progress. I believe playbackLength pertains more to playback mode in the later software versions. Make sure to specify the start and length in your request to startFilesave, and try tracking your playbackPosition relative to your requested values instead.



  c. So, because that didn't work for me, I resorted to manually polling "playbackPosition" in order to try to track progress. During the filesave operation, the playback position starts at a seemingly random value (I've seen it at 100, up around 1200, etc), jumps back to 0, then goes all the way to the end like it should, but then goes back to a different random value before I receive the SSE that the camera state has switched off of "filesave". I'm not sure what's happening here, but all these pieces together make it impossible to consistently and correctly track the progress of the save operation.

Although this seems a bit buggy, it's normal behavior with the Chronos 1.4 & 2.1 cameras. I believe internally these cameras require a lot of effort to switch into a saving state, which is also related to why the video signal shuts off while saving.



2. I can't connect to the rtsp stream. I'm using VLC to try to connect to it and it's just not working.

Make sure you're running the latest Chronos software version 0.7.2 and latest version of VLC. See section 2.2 of this guide for instructions:
https://www.krontech.ca/wp-content/uploads/2020/03/Network-Control-v0.6.5.pdf

However, I prefer to use MPV with the "low-latency" profile enabled. It tends to maintain the video stream much better compared to the default VLC setup.
https://mpv.io/manual/stable/#low-latency-playback



3. More minor, but some of the endpoints don't like if I specify an encoding in Content-Type in the headers. I'm using .NET HttpClient and the default Content-Type for json is "application/json; charset=utf-8". This seems to work for some endpoints but not others, so I'm just clearing out that "charset" piece and everything works. Still this seems buggy.

For requests which would respond with JSON, make sure your request header has Content-Type with a value of application/json. Many HTTP clients will inject other values, such as charset=utf-8, but the Chronos API will not respond correctly to that request. Furthermore, case sensitivity matters, so for example, a value of Application/JSON would also result in the request being ignored.



I may have found a workaround for my purposes for bug 1a, by using "totalFrames" instead of "playbackLength".

totalFrames refers to the quantity currently in the buffer. It is a reliable value to key off of, because in many cases the playbackLength is not automatically updated. Another parameter you may want to consider referencing instead, is videoSegments, regardless if you're recording in segmented mode. The advantage is that you may retrieve the frame rate and exposure period originally used.



Another bug: Adjusting resolution - I can set the resolution to any supported value (incremented by 32 in the width, 2 in the height on the 2.1 camera I'm testing) via the camera interface. On the web interface and API, unless I set it to "standard" values - like 1920 x 1080, 1280 x 1024, etc. - I get blue lines or blue tint in the video. Even some of the common resolutions listed in the camera's datasheet exhibit these issues. Something is happening when I set it on the camera that is not happening when I set it via the API.

When you press the OK button in the Record Settings dialog, a "zero time" black calibration is automatically performed. You may achieve the same results by sending a startCalibration request after receiving the Event indicating the sensor configuration has changed.



Seems funny that Krontech doesn't care about this.

I'm guessing this thread was accidentally overlooked. I'm very experienced with the Chronos API and would be happy to help! Some minor revisions have been made to the documentation, and it now has a new home at the following URL in addition to being a downloadable PDF on the Software Resources tab of the main Kron site
https://support.krontech.ca/en/articles/9903772-chronos-0-7-0-api-documentation
Please let me know if you have any other questions!
10
Chronos User Discussion / Re: Has anyone tried it yet?
« Last post by hummingbirdography on April 03, 2025, 11:18:10 AM »
I've tested this before and didn't see much, if any of a difference compared to the microSD card included with the camera. You might see a teeny tiny shorter boot-up time, but after that all the camera operations will still perform at the same pace. In other words, a faster microSD certainly won't speed up offloading footage or anything like that.

A healthy boot time with a Chronos 1.4 is about 50 seconds from pressing the power button to being able to start recording.

If you're observing 3 to 7 minute startup durations, it sounds like you are experiencing a different issue. Occasionally the camera can get stuck in a loop of restarting itself. It should self correct, however may very well take up to 7 minutes. I recommend checking the Util > About > Last Shutdown Reason for clues when you observe that long of a startup.

A healthy shut down would be indicated by "97: PwrBtn, Software, PMIC Ack", and should only take about 10 to 15 seconds.

If you're seeing anything else, such as "5: Watchdog, PMIC Ack", then I suspect this is a bug in the software. Try rebooting the camera after one of those lengthy startups, and see if it hasn't self corrected to under 1 minute.
Pages: [1] 2 3 ... 10