Skip to content
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

Ffmpeg supports RTMP streaming #28

Merged
merged 24 commits into from
May 16, 2022
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
run: |
sed -i "s/BR2_JLEVEL=5/BR2_JLEVEL=14/g" configs/$CONF
rm -rf $CONF
rm -rf buildroot-2020.02.11
make CONF=$CONF

- name: Save image to CI root
Expand Down
1 change: 1 addition & 0 deletions Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ source "$BR2_EXTERNAL_K510_PATH/package/write_read_file/Config.in"
source "$BR2_EXTERNAL_K510_PATH/package/wifi/Config.in"
source "$BR2_EXTERNAL_K510_PATH/package/gpio_keys/Config.in"
source "$BR2_EXTERNAL_K510_PATH/package/hello_world/Config.in"
source "$BR2_EXTERNAL_K510_PATH/package/librtmp/Config.in"
3 changes: 3 additions & 0 deletions configs/k510_crb_lp3_v0_1_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ BR2_TARGET_K510_EVB_TEST_SIMD_UMUL8_FIRMWARE=y
BR2_PACKAGE_DSP_LOG=y
BR2_PACKAGE_VENC_LIB=y
BR2_PACKAGE_ALSA_DEMO=y
BR2_PACKAGE_LIBRTMP=y
BR2_PACKAGE_OPENSSL=y
BR2_PACKAGE_LIBOPENSSL=y
BR2_PACKAGE_FFMPEG_CANAAN=y
BR2_PACKAGE_AUDIO3A_LIB=y
BR2_PACKAGE_MEDIACTL_LIB=y
Expand Down
3 changes: 3 additions & 0 deletions configs/k510_crb_lp3_v1_2_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ BR2_PACKAGE_MEDIACTL_LIB=y
BR2_PACKAGE_MAILBOX_DEMO=y
BR2_PACKAGE_DSP_SCHEDULER=y
BR2_PACKAGE_LIVE555_CANAAN=y
BR2_PACKAGE_LIBRTMP=y
BR2_PACKAGE_OPENSSL=y
BR2_PACKAGE_LIBOPENSSL=y
BR2_PACKAGE_AI=y
BR2_PACKAGE_AI_KMODEL_DATA_SITE="https://github.com/kendryte/k510_buildroot/releases/download/v1.5/ai_kmodel_data.tar.xz"
BR2_PACKAGE_CLIENT=y
Expand Down
3 changes: 3 additions & 0 deletions configs/k510_evb_lp3_v1_1_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,8 @@ BR2_PACKAGE_MEDIACTL_LIB=y
BR2_PACKAGE_MAILBOX_DEMO=y
BR2_PACKAGE_DSP_SCHEDULER=y
BR2_PACKAGE_LIVE555_CANAAN=y
BR2_PACKAGE_LIBRTMP=y
BR2_PACKAGE_OPENSSL=y
BR2_PACKAGE_LIBOPENSSL=y
BR2_PACKAGE_AI=y
BR2_PACKAGE_AI_KMODEL_DATA_SITE="https://github.com/kendryte/k510_buildroot/releases/download/v1.5/ai_kmodel_data.tar.xz"
1 change: 1 addition & 0 deletions package/encode_app/encode_app.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ define ENCODE_APP_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/video_sample.conf $(TARGET_DIR)/app/encode_app/video_sample.conf
$(INSTALL) -D -m 0755 $(@D)/imx219_0.conf $(TARGET_DIR)/app/encode_app/imx219_0.conf
$(INSTALL) -D -m 0755 $(@D)/imx219_1.conf $(TARGET_DIR)/app/encode_app/imx219_1.conf
$(INSTALL) -D -m 0755 $(@D)/roi_1920x1080.conf $(TARGET_DIR)/app/encode_app/roi_1920x1080.conf
endef

$(eval $(generic-package))
Loading