×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

Cannot play back SER videos?

  • Posts: 912
  • Thank you received: 86
Jasem -
After I updated to 1.5.5 everything seems to be working!
Thank you so much!

Just captured Mars in 16bit. Live Video, 200x200 ROI selected, SER file. ASI071MC.
Mars is so small now (compared to October).
-- Max S
ZWO AM5. RST-135. AZ-GTI. HEQ5. iOptron SkyTracker.
TPO RC6. FRA400. Rokinon 135 and other lenses.
ZWO ASI2600MC. D5500 modified with UVIR clip-in filter.
ZWO ASI120MM Mini x 2. ZWO 30F4 guider. Orion 50mm guider.
ZWO EAF x 3.
3 years 4 months ago #63904

Please Log in or Create an account to join the conversation.

Most of the credit really goes to Pawel Soja, he's done an outstanding work improving the streaming & recording performance in INDI.
3 years 4 months ago #63905

Please Log in or Create an account to join the conversation.

  • Posts: 912
  • Thank you received: 86
Pawel Soja - thank you very much!
-- Max S
ZWO AM5. RST-135. AZ-GTI. HEQ5. iOptron SkyTracker.
TPO RC6. FRA400. Rokinon 135 and other lenses.
ZWO ASI2600MC. D5500 modified with UVIR clip-in filter.
ZWO ASI120MM Mini x 2. ZWO 30F4 guider. Orion 50mm guider.
ZWO EAF x 3.
3 years 4 months ago #63908

Please Log in or Create an account to join the conversation.

  • Posts: 2
  • Thank you received: 0

Replied by Greg on topic Cannot play back SER videos?

I believe I'm having the same issue with an ASI2600MC camera, running on a Raspberry Pi with Astroberry. I'm using CCDciel as the top-level manager for running the session. 16 bit raw, captured to an SER file; not a pleasant thing to look at. If it matters, I was able to make the image a little better in SER Player by Inverting the image, and overriding the (correct) RGGB Bayer pattern with GRBG instead. But, it was still mostly a mess.

Current released indi-full appears to be 1.8.6-1. Checking dates on this thread's posts, it looks like the fix isn't in 1.8.7 either, though I haven't found where to download that version to test it.

My question: What version, and when, will the fix be in, such that I can simply do an apt-get update / install of indi-full and get the fix?
3 years 3 months ago #65073

Please Log in or Create an account to join the conversation.

The fix landed in v1.8.7
3 years 3 months ago #65078

Please Log in or Create an account to join the conversation.

  • Posts: 2
  • Thank you received: 0

Replied by Greg on topic Cannot play back SER videos?

Ah, thar it is. Note to anyone else looking for it, indi-full isn't, um, "full". It's back at 1.8.6-1. libindi1 and indi-bin are at 1.8.7; it's in there somewhere.

Weather prohibits a real test, but capturing a video of an unfocused wall seems more like what I would expect. Oddly, SER Player is reporting the video as 10 bits, when the camera is 16. (SER videos via oaCapture are reported as 15 bits, so really confused here.)

Final puzzle, why does oaCapture call the raw mode "RGGB16LE"? LE doesn't mean "little endian", does it? It was working properly.
3 years 3 months ago #65121

Please Log in or Create an account to join the conversation.

  • Posts: 1
  • Thank you received: 1
I got caught by this and ended up with some big SER files that I patched with a little python script. Attaching here in case anyone else finds themselves in the same spot, stuck with big files and no easy way to edit short of a hex editor. 

<code>
goodfile = "/working/astro/videos/fullframe.ser"
badfile = "/working/astro/videos/corrupt_cropped.ser"
offset = 0x1A

# Open known good SER
# Read 8 bytes from 0x1A (resolution)
with open(goodfile, 'r+b') as f:    
    f.seek(offset)    
    good_bytes = f.read(8)

# Open corrupt SER and write those same bytes to 0x1A
with open(badfile, 'r+b') as f:    
    f.seek(offset)
    f.write(good_bytes)
</code>
The following user(s) said Thank You: Alfred
Last edit: 2 years 6 months ago by John Hobart. Reason: Formatted code block
2 years 6 months ago #75655

Please Log in or Create an account to join the conversation.

Time to create page: 0.521 seconds