Update Aarch64 support (#52)

* update aarch64 support; update readme

* remove test code

* oops, more test code

* update readme
This commit is contained in:
taylorbourne
2021-07-22 20:45:35 -07:00
committed by GitHub
parent 733b6750e6
commit 07a994faed
3 changed files with 28 additions and 11 deletions

View File

@@ -4,16 +4,17 @@ This Docker provides a simple solution to get live NHL and MLB games into your E
- [Run](#run)
- [Setup](#setup)
- [Env file](#env-file)
- [Cron schedule](#cron-schedule)
- [Sample volume mapping](#sample-volume-mapping)
- [xTeVe](#xteve)
- [guide2go](#guide2go)
- [Testing cronjob function](#testing-cronjob-function)
- [Env file](#env-file)
- [Cron schedule](#cron-schedule)
- [Sample volume mapping](#sample-volume-mapping)
- [xTeVe](#xteve)
- [guide2go](#guide2go)
- [Testing cronjob function](#testing-cronjob-function)
- [Notes on Channels DVR](#notes-on-channels-dvr)
- [Credits](#credits)
- [guide2go](#guide2go-1)
- [Lazystream](#lazystream)
- [xTeVe](#xteve-1)
- [guide2go](#guide2go-1)
- [Lazystream](#lazystream)
- [xTeVe](#xteve-1)
# Run
@@ -69,6 +70,13 @@ If you have an existing guide2go setup you may copy the `.yaml` files into the p
Simply run the cronjob file inside the Docker container
`docker exec -it dockername ./cronjob.sh`
## Notes On Channels DVR
- You have to select MPEG-TS as the stream format
- The stream only works in a browser - not on Android TV or Android
- Adding an m3u playlist to Channels:
https://getchannels.com/docs/channels-dvr-server/how-to/custom-channels/#adding-your-custom-channels
# Credits
[Lazystream](https://github.com/tarkah/lazystream) [@tarkah](https://github.com/tarkah/)

View File

@@ -20,10 +20,12 @@ latest_version=$(echo $latest_release | grep -oE 'v[0-9]+\.[0-9]+\.[0-9]+' | hea
echo "remote version: ${latest_version}"
[ "$(arch)" == "x86_64" ] && release_name=$lazyStreamReleaseName || release_name=$lazyStreamReleaseNameAarch64
if [ $current_version != $latest_version ]; then
echo "newer version available, downloading..."
wget https://github.com/tarkah/lazystream/releases/download/$latest_version/lazystream-$latest_version-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \
wget https://github.com/tarkah/lazystream/releases/download/$latest_version/lazystream-$latest_version-$release_name.tar.gz -O lazystream.tar.gz; \
tar xzf lazystream.tar.gz; \
mv ././lazystream /usr/bin/lazystream; \
rm lazystream.tar.gz; \

View File

@@ -55,4 +55,11 @@ plexUpdateURL=
# channelsUpdateXmltvURL -> http://192.168.1.1:8089/dvr/lineups/XMLTV-<source name>
use_channelsAPI=no
channelsUpdateM3uURL=
channelsUpdateXmltvURL=
channelsUpdateXmltvURL=
### LazyStream Release Names
# ** WARNING **
# If you change these values you're on your own! There's really no need to change anything here unless
# your unique setup calls for it.
lazyStreamReleaseName=x86_64-unknown-linux-musl
lazyStreamReleaseNameAarch64=aarch64-unknown-linux-gnu