-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Playing a video once, then loop all other videos. #231
Comments
Hi, So for now my suggested "workaround" would be to name your first video so that it's alphabetical the first (like aaaa_start.mp4) and your other video xxx_loop_repeat999999x.mp4 |
Hey so i made it work using a script with omx player. i installed the latest raspberry OS lite that you recommend and turned on the wifi in the pi image writer (before installing) then i installed video looper via this tutorial: https://learn.adafruit.com/raspberry-pi-video-looper/installation after that i installed omxplayer with
my video file that will only played once is located in ~/home/pi/logo/yourvideo.mp4 script is located in ~/home/pi and named "play_video.sh" #!/bin/bash #Path to the video file VIDEO_PATH="/home/pi/logo/yourvideo.mp4" #check if the video file exists #start omxplayer to play the video made it executable:
then i made a .service file named playvideo.service in /etc/systemd/system that contains: [Unit] [Service] [Install] after that i configured the video_looper.ini to show no countdown to start a video. so what this does is playing the video i placed in /home/pi/logo just once after boot and then the videos from the USB stick gets looped instantly after (nearly seemless). |
Hey, is it possible to play a video once and then loop all the other videos?
For example: I want to use this at an exhibition. After startup, i want the rpi to show a logo (video) of my company just a single time and then it should loop the videos of my client.
i tried naming the video myvideo_repeat_1x.mp4 but of course that does not work. :)
Also big thanks for all of that.
The text was updated successfully, but these errors were encountered: