Thanks a lot for the detailed explanation, can you please provide the link for the code repository?
@Multi_Magix7 ай бұрын
Yes phanindra thanks much for appreciation, below is the link github.com/MultiMagix/AVSampleProjects/tree/main/Video Look for projects RTSPFileStream RTSPCameraStream Note: In CMakeLists.txt modify the ffmpeg pkgconfig path accordingly
@abdulfathah41263 ай бұрын
❤❤❤ Thank you so much..
@MuhammadBilalYousaf-z7d2 ай бұрын
i am facing some authorization errors whenever i try to play my streamed video
@MuhammadBilalYousaf-z7d2 ай бұрын
I have to add this feature into my Desktop app in .NET
@Multi_Magix2 ай бұрын
Try to place the video file in a location where you have all the access (home directory) and give same location in source code (input file).. If still facing issues, please let me know
@MuhammadBilalYousaf-z7d2 ай бұрын
@@Multi_Magix I am trying to test the streaming process manually before implementing it into my desktop app. I have configured the YAML file for MediaMTX and am using FFmpeg to publish my video on MediaMTX. The video publishes successfully, but when I try to play the stream, I encounter an authorization error.
@SakthiMeenakshiA2 ай бұрын
Bro, can you explain me build/
@Multi_Magix2 ай бұрын
Yes, We have a cmake file (github.com/MultiMagix/AVSampleProjects/blob/main/Video/RTSPFileStream/CMakeLists.txt) we need to use this for build Before building you need to get ready with ffmpeg libs and headers (you can build libraries from sources, please refer to FFMPEG documentation or you can sue package manager "sudo apt-get install libavcodec-dev libavformat-dev libavdevice-dev " ) a) Now modify cmake which is pointing to your FFMPEG libs installed location b) mkdir build c) cd build d) cmake .. Please reach out to me phani@multimagix or pkoppisetti1410@gmail.com for more queriesneed
@Multi_Magix2 ай бұрын
github.com/MultiMagix/AVSampleProjects/blob/main/Video/RTSPFileStream/CMakeLists.txt This is the cmake we are using to build The main thing here is you need to install FFMPEG libs and headers either from sources or with the help of package manager (sudo apt-get install libavcodec-dev libavformat-dev libavdevice-dev) In cmake you need to change the path of FFMPEG libs (point to installed location on your machine) a) mkdir build b) cd build c) cmake .. d) make