Recent content by 0dan0

  • It's #MARCHintosh 2025! Join in on the fun and post your project or play with some new stuff in our #MARCHintosh 2025 thread.
  1. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    @Andreas I have seen that too, about 10% of my captures have it. Although I'm not sure it is due to the 18Hz, as that is only modifying the data written to the header of the MP4. It is a timing issue where the frame is grabbed, just as the motor start/end that frame feed. Notice how it is...
  2. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    I leveled up on my hacking skills. Here is Reels displaying it own histogram. I'm now compiling C code, and adding it the firmware. Previously it was all hand assembly (brain hurt). This histogram code is not ready to share, as it currently flickers and is only on during capture. This is a...
  3. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    What did the unstable image look like? I don't know if the manual exposure control is at the same address. We need someone with Type B unit, add has a serial port, to test this.
  4. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    I keep find things the developers did wrong, or didn't care. H264 has two common color spaces, Rec709 broadcast range, and Rec709 full range. A decade ago (where this tech originates) many developers didn't set the flag to say which (like on Reels.) The assumption with no flag for media...
  5. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Version 5.6 attached This is the first version with both manual white balance and exposure. While the code changes for manual exposure are small, there a lot other changes in this build. With each version I change the boot screen and shutdown screen JPGs. There are the same image, yet they...
  6. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    A benefit of running a manual exposure, there is now lower noise. My bit-rate control is going to highest Qp limit (19), and staying there, as the images are cleaner.
  7. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Feedback needed. I have found how to set the exposure to full manual, and you only need a working serial port. From the command prompt > ae set <ISO> <exposure time in µs> 0 e.g. > ae set 50 8191 0 ISO (in hex) is 32 to 640 (50 to 1600) - the auto exposure does increase ISO Exposure (in...
  8. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Firmware V5.5 attached This new firmware includes a grey frame detector to stop the capture automatically when the file is run out at the end. While I haven't had it fail. I do have the sprocket hole visible, as the detector is using the luma minimum to maximum in the frame, a low...
  9. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Version 5.4 attached. I was able to find a way to stop the motors in the event of encoder crash. While running at 50Mb/s has its risks, now at least you only have to wind back 5-6 frames, restart the unit, and continue. Some code has been moved to create more coding space, plus some work in...
  10. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    No progress report. Does anyone know how to control the motors? I would like to have a control to disable them. FUN_001069d8(0, 0x4000001, 1, 0); Seems to be a call to shutdown the unit, but when I use it it gets into a loop before the motors are switched off. I expect there is another...
  11. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    This is a more robust design for alignment for sure. Sorry to here about the broken sensor clip. I'm surprised mine stills works after so many removals, and my thread on the original lens mount is toast. I'm thinking I purchasing a second unit, but I would like to make show it is not type...
  12. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Version 5.3 attached. Just bit-rate stability, last version would lower the Qp to a limit of 16, but for some reels this would crash. This build uses 19 at the lowest Qp value, no other code changes. Scanned for hours on this setting. Bit-rate averaging 48Mb/s. I was hoping to get 80Mb/s...
  13. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Left is completely stock, with original auto white balance, and yes is happens to get the WB pretty good for this segment, but it all over the place through the video. The fixed/locked WB is a tad too blue, but is easy to fix in post. Here is a short version at 4K, as youtube preserves more at...
  14. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    Version 5.2 Attached. The bit-rate now averages around 55Mb/s, and gentler version of the new rate control. At 80Mb/s there was still a few capture failures, so still some work to do. This build also adds 18fps as the default. At address 0x1ef984 use 0x60EA for 20fps and 0xF0D2 for 18Hz...
  15. 0

    Modding the Kodak Reels 8mm Film Digitizer (Firmware Hack)

    I just completed a 2GB capture (3+ minutes of footage) at 82Mb/s (10MB/s). This is using a prototype of the rate control I'm working on. Here is my new console output. Every two frames the Qp is lowered by one. If the bitrate is stressing buffers, the Qp is increased by 2 or 4, depending on...