浏览代码

fix typo

master
Andreas Demmelbauer 5 年前
父节点
当前提交
eb1d4d79cd
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      Adafruit_Video_Looper/video_looper.py
  2. +1
    -1
      install.sh

+ 1
- 1
Adafruit_Video_Looper/video_looper.py 查看文件

@@ -249,7 +249,7 @@ class VideoLooper:
# Load and play a new movie if nothing is playing.
if not self._player.is_playing():
movie = playlist.get_next()
if if not self._player.is_playing(): movie is not None:
if movie is not None:
# Start playing the first available movie.
self._print('Playing movie: {0}'.format(movie))
self._player.play(movie, loop=playlist.length() == 1, vol = self._sound_vol)


+ 1
- 1
install.sh 查看文件

@@ -11,7 +11,7 @@ fi

echo "Installing dependencies..."
echo "=========================="
apt update && apt -y install git build-essential python3-dev python3 python3-pip python3-pygame supervisor omxplayer
apt update && apt -y install git build-essential python3-dev python3 python3-pip python3-pygame supervisor wiringpi omxplayer

echo "Installing hello_video..."
echo "========================="


正在加载...
取消
保存