Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ set(SOURCE_FILES
src/gstrtpreceiver.cpp
src/gstrtpreceiver.h)
file(GLOB ICONS src/icons/*.png)
file(GLOB SPLASH src/icons/*.mp4)
file(GLOB OSD_CONFIGS *_osd.json)

include_directories("/usr/include/libdrm" "/usr/include/cairo" "/usr/include/spdlog")
Expand Down Expand Up @@ -185,7 +186,7 @@ include(GNUInstallDirs)
install(TARGETS ${PROJECT_NAME}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
install(FILES ${ICONS}
install(FILES ${ICONS} ${SPLASH}
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}
)

Expand Down
4 changes: 4 additions & 0 deletions pixelpilot.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
splash:
enabled: false
file: /usr/local/share/pixelpilot/splash.mp4 # use ffmpeg -i input.mp4 -c:v libx265 -x265-params keyint=1:scenecut=0 -c:a copy splash.mp4
# timeout: 3
gsmenu:
enabled: true
gpio:
Expand Down
Loading