You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
850 B
C
33 lines
850 B
C
2 years ago
|
#include "../../lv_examples.h"
|
||
|
#if LV_BUILD_EXAMPLES
|
||
|
#if LV_USE_FFMPEG
|
||
|
|
||
|
/**
|
||
|
* Open a video from a file
|
||
|
*/
|
||
|
void lv_example_ffmpeg_2(void)
|
||
|
{
|
||
|
/*birds.mp4 is downloaded from http://www.videezy.com (Free Stock Footage by Videezy!)
|
||
|
*https://www.videezy.com/abstract/44864-silhouettes-of-birds-over-the-sunset*/
|
||
|
lv_obj_t * player = lv_ffmpeg_player_create(lv_scr_act());
|
||
|
lv_ffmpeg_player_set_src(player, "./lvgl/examples/libs/ffmpeg/birds.mp4");
|
||
|
lv_ffmpeg_player_set_auto_restart(player, true);
|
||
|
lv_ffmpeg_player_set_cmd(player, LV_FFMPEG_PLAYER_CMD_START);
|
||
|
lv_obj_center(player);
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
void lv_example_ffmpeg_2(void)
|
||
|
{
|
||
|
/*TODO
|
||
|
*fallback for online examples*/
|
||
|
|
||
|
lv_obj_t * label = lv_label_create(lv_scr_act());
|
||
|
lv_label_set_text(label, "FFmpeg is not installed");
|
||
|
lv_obj_center(label);
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
#endif
|