Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/merovius/srvfb
Stream a framebuffer device over HTTP
https://github.com/merovius/srvfb
golang remarkable-tablet
Last synced: 3 months ago
JSON representation
Stream a framebuffer device over HTTP
- Host: GitHub
- URL: https://github.com/merovius/srvfb
- Owner: Merovius
- License: apache-2.0
- Created: 2018-12-03T11:37:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T14:14:32.000Z (about 1 year ago)
- Last Synced: 2024-07-31T06:13:05.783Z (3 months ago)
- Topics: golang, remarkable-tablet
- Language: Go
- Size: 43.9 KB
- Stars: 239
- Watchers: 11
- Forks: 20
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-reMarkable - srvfb - Alternative screen-streaming software. Written in Go. (Screen Sharing/Streaming / Launchers)
README
# srvfb - Stream framebuffer content over HTTP
This repository contains a small webserver that can serve the contents of a
linux framebuffer device as video over HTTP. The video is encoded as a series
of PNGs, which are served in a `multipart/x-mixed-replace` stream. The primary
use case is to stream a [reMarkable][reMarkable] screen to a computer and share
it from there via video-conferencing or capturing it. For that reason, there is
also a proxy-mode, which streams the frames as raw, uncompressed data from the
remarkable and can then do the png-encoding on a more powerful machine.
Whithout that, the framerate is one or two frames per second, which might not
be acceptable (it might be, though).This should be considered a tech demo in the current state. The code is not
particularly clean, it's not in any way secured, probably not very efficient
and it's taylored specifically to the reMarkable (e.g. it can only stream
16-bit grayscale images). Feel free to use it and report any bugs you find, but
I don't make any promises in regards to support or stability and any issues not
directly related to my usecase will likely be closed.You can see a short video demonstrating this [in this tweet][video]
**Note: This project is not compatible with the reMarkable 2 and
[I don't intend to change that](https://github.com/Merovius/srvfb/issues/22).
In general, you should consider this project in maintenance mode at best - I
don't regularly use it anymore, so I'm not really incentivized to improve it.**# Installation and usage
You need a working [Go installation][go] and [ssh-access to your reMarkable][ssh].
You can then obtain, install and run the code via```
go get -d -u github.com/Merovius/srvfb
GOARCH=arm GOARM=7 GOOS=linux go build github.com/Merovius/srvfb
scp srvfb [email protected]:
ssh [email protected] ./srvfb -device /dev/fb0 -listen :1234
```If you then open `http://10.11.99.1:1234/` in your browser (only Chrome is
tested) you should see the stream from your reMarkable. To use proxy-mode, run
(in a separate terminal)```
go build github.com/Merovius/srvfb
./srvfb -listen localhost:1234 -proxy 10.11.99.1:1234
```and open `http://localhost:1234/` in your browser.
Once you can see the reMarkable screen in your browser (via proxy or not),
clicking on the image should rotate it by 90°.This repository also contains systemd unit files to run `srvfb` automatically
(using socket activation). For security reasons, it only listens on the USB
network, though. To use it, run```
cd $(go env GOPATH)/src/github.com/Merovius/srvfb
GOARCH=arm GOOS=linux go build github.com/Merovius/srvfb
scp srvfb [email protected]:/usr/bin
scp contrib/srvfb.service contrib/srvfb.socket [email protected]:/etc/systemd/system
ssh [email protected] systemctl enable --now srvfb.socket
```# License
Apart where otherwise noted, this code is published under the Apache License,
Version 2.0:```
Copyright 2018 Axel WagnerLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```[reMarkable]: https://remarkable.com/
[go]: https://golang.org/doc/install
[ssh]: https://remarkablewiki.com/tech/ssh
[video]: https://twitter.com/TheMerovius/status/1066455790117097472