The project works wonderfully except for one thing... every time omxplayer starts a new clip, the HDMI signal drops out for half a second. This causes the tv to refresh the input, so I lose sound for a few seconds, and the ugly source identification appears on the screen (see attachment). I've tried this on two separate tvs, and the same problem occurs on HDMI only. There are no problems on the composite output.
I just export H.264 files directly from adobe premiere, and the pi plays them beautifully! Omxplayer plays 1080p @ 30Hz without any hiccups during playback. My omxplayer code is below... any suggestions to eliminate this interruption?
Code: Select all
#!/bin/bash
while true; do
cd "/media/PIDRIVE"
set -- *.mp?
for i;do
omxplayer -r -o hdmi "$i"
done
done