-
Notifications
You must be signed in to change notification settings - Fork 699
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
rtsp client in esp32_p4 (AUD-5885) #1321
Comments
I'm using esp32_p4 module in esp_brookesia_phone project i added the esp_adf repo and trying to implement rtsp.but I'm not getting proper setup and necessary libraries for the module.could u please suggest me which are the libraries are needed and how the logic will work on esp32_p4 module. |
Currently RTSP is implemented in esp_media_protocol and it only dependent on media_lib_sal. If you use IDF and not ADF you can copy these 2 library and add CMakeLists.txt for them. If you use ADF, you can modify esp_rtsp example add UI related things into it, also you can see the code to check the API usage: |
Now,I'm using esp32_p4 for the esp_devkits repo inside esp_brookesia_phone i pasted the two libraries esp_media_protocal and media_lib_sal.but there i can only get esp_rtsp.h file in esp_media_protocol.inside .obj only present couldn't view the source file and I'm not getting idea how to get the example code for rtsp. |
Example code is https://github.com/espressif/esp-adf/tree/master/examples/protocols/esp-rtsp RTSP protocol is in libesp_media_protocol.a there is no open source for it yet. |
I installed adf in idf and i tired with example rtsp code but it shows the error In CMakelist and sdkconfig file is not present for esp32p4. |
You need export ADF_PATH=XXXXX/esp-adf-internal then retry |
which version of idf and adf should i use |
IDF v5.3 or above to use esp32p4, ADF can use master branch. |
while I'm trying to build example code for rtsp it's getting lots error,since i didn't changed anything up to now. Executing action: all (aliases: build) ESP-IDF Partition TableName, Type, SubType, Offset, Size, Flagsnvs,data,nvs,0x9000,24K, [389/1328] Performing configure step for 'bootloader' |
Execute |
after i did the WiFi idf_coponent.yml..I couldn't set-taget for esp32p4. Adding "set-target"'s dependency "fullclean" to list of commands with default set of options.
-- Found Git: /usr/bin/git (found version "2.34.1")
Call Stack (most recent call first): -- Configuring incomplete, errors occurred! |
I didn't got any esp-adf-internal folder inside esp-adf. |
Following is my build steps, it build OK after mark some code: 2001 cd ~/adf-commit/esp-adf-internal/examples/protocols/esp-rtsp
2004 idf.py add-dependency "espressif/esp_wifi_remote^0.5.1"
2005 export ADF_PATH=/home/tempo/adf-commit/esp-adf-internal/
2006 rm -rf build/
2007 idf.py set-target esp32p4
2008 idf.py build
2009 idf.py menuconfig --> select P4 Function Board
2010 idf.py build
2011 code /home/tempo/adf-commit/esp-adf-internal/examples/protocols/components/av_stream/av_stream_hal/av_stream_hal_camera.c --> Comment some GPIO related code
2012 idf.py build
2013 code /home/tempo/adf-commit/esp-adf-internal/examples/protocols/components/av_stream/av_stream_hal/av_stream_hal_lcd.c --> Comment lcd init function
2014 idf.py build |
here i cloned esp-adf.that location is like /home/smartbuild/esp/esp-adf/examples/protocols/esp-rtsp. |
The esp-adf-internal not even found in the github repository also. |
Can you please tell me the step by step process of install adf and implement the things for rtsp in esp32p4 module. |
Once again i cloned esp-adf master but i don't got any named folder like esp-adf-internal smartbuild@smartbuild-Aspire-A314-35:~$ git clone --recursive https://github.com/espressif/esp-adf.git |
@TempoTian hai,could I get the solution of how to workout rtsp in esp32p4. |
Which board are you using? If I have the board on hand, maybe can write a example for you. |
esp32_p4_function_ev_board. |
Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
the rtsp protocol can implement in esp32_p4 display board can be easy to display the live stream video
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Please give as many details as you can. Include suggestions for useful APIs or interfaces if relevant.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: