prog-amateur Hi, to show screenshot instead of video snap when there is no video, just modify this file : \batocera\themes\es-theme-fundamental-master\fundamental.xml
At the end of the file locate this section :
<feature supported="video">
<view name="video">
<video name="md_video">
<origin>0.5 0.5</origin>
<pos>0.8072916666666667 0.3888888888888889</pos>
<maxSize>0.3333333333333333 0.4444444444444444</maxSize>
<default>./core/images/static.mp4</default>
<delay>0.1</delay>
<showSnapshotNoVideo>true</showSnapshotNoVideo>
<showSnapshotDelay>false</showSnapshotDelay>
<zIndex>3</zIndex>
</video>
<image name="md_marquee">
<origin>0.5 0.5</origin>
<pos>0.4401041666666667 0.0833333333333333</pos>
<maxSize>0.3489583333333333 0.1111111111111111</maxSize>
</image>
</view>
</feature>
remove this line :
<default>./core/images/static.mp4</default>
and modify this line :
<showSnapshotNoVideo>false</showSnapshotNoVideo>
like this
<showSnapshotNoVideo>true</showSnapshotNoVideo>
At the end this section looks like this :
<feature supported="video">
<view name="video">
<video name="md_video">
<origin>0.5 0.5</origin>
<pos>0.8072916666666667 0.3888888888888889</pos>
<maxSize>0.3333333333333333 0.4444444444444444</maxSize>
<delay>0.1</delay>
<showSnapshotNoVideo>true</showSnapshotNoVideo>
<showSnapshotDelay>false</showSnapshotDelay>
<zIndex>3</zIndex>
</video>
<image name="md_marquee">
<origin>0.5 0.5</origin>
<pos>0.4401041666666667 0.0833333333333333</pos>
<maxSize>0.3489583333333333 0.1111111111111111</maxSize>
</image>
</view>
</feature>