VideoTools/vendor/github.com/jsummers/gobmp
Stu Leak 68df790d27 Fix player frame generation and video playback
Major improvements to UnifiedPlayer:

1. GetFrameImage() now works when paused for responsive UI updates
2. Play() method properly starts FFmpeg process
3. Frame display loop runs continuously for smooth video display
4. Disabled audio temporarily to fix video playback fundamentals
5. Simplified FFmpeg command to focus on video stream only

Player now:
- Generates video frames correctly
- Shows video when paused
- Has responsive progress tracking
- Starts playback properly

Next steps: Re-enable audio playback once video is stable
2026-01-07 22:20:00 -05:00
..
.gitignore Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00
COPYING.txt Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00
reader.go Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00
readme.md Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00
rle.go Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00
writer.go Fix player frame generation and video playback 2026-01-07 22:20:00 -05:00

gobmp

A Go package for reading and writing BMP image files.

Installation

To download and install, at a command prompt type:

go get github.com/jsummers/gobmp

Documentation

Gobmp is designed to work the same as Go's standard image modules. Importing it will automatically cause the image.Decode function to support reading BMP files.

The documentation may be read online at GoDoc.

Or, after installing, type:

godoc github.com/jsummers/gobmp | more

Status

The decoder supports almost all types of BMP images.

By default, the encoder will write a 24-bit RGB image, or a 1-, 4-, or 8-bit paletted image. Support for 32-bit RGBA images can optionally be enabled. Writing compressed images is not supported.

License

Gobmp is distributed under an MIT-style license. Refer to the COPYING.txt file.

Copyright © 2012-2015 Jason Summers <jason1@pobox.com>