diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,15 @@ # 6.8301 Project +## Installation + +```sh +pip install -r requirements.txt +# Compile reedsolo using Cython +pip install --upgrade reedsolo --no-binary "reedsolo" --no-cache --config-setting="--build-option=--cythonize" --use-pep517 --isolated --pre --verbose --force-reinstall +``` + +## Usage + Encode: `python encoder.py -i in -o vid.mkv` Play video: `mpv --scale=nearest --fullscreen --loop --no-keepaspect vid.mkv` @@ -8,6 +18,4 @@ Decode: `python decoder.py -o out` Formatting: `black -l 120 *.py` -TODO: -- Limit BFS time -- Write better ECC +Use phone as webcam for higher quality video: `scrcpy --v4l2-sink=/dev/video4 --video-source=camera --no-video-playback --camera-size 1920x1440` |