stream frames using Ethernet camera
Hello, I have an ethernet camera connected to my ethernet port and I need to stream those Images using ffmpeg command, source address: 192.168.9.78 UDP port: 5004 ffmpeg command: ffmpeg eth0 -i udp://192.168.9.78:5004 error: C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg eth0 -i udp:// 192.168.9.78:5004 ffmpeg version 2022-06-20-git-56419428a8-full_build-www.gyan.dev Copyright (c) 2000-2022 the FFmpeg developers built with gcc 11.3.0 (Rev1, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint libavutil 57. 27.100 / 57. 27.100 libavcodec 59. 33.100 / 59. 33.100 libavformat 59. 25.100 / 59. 25.100 libavdevice 59. 6.100 / 59. 6.100 libavfilter 8. 41.100 / 8. 41.100 libswscale 6. 6.100 / 6. 6.100 libswresample 4. 6.100 / 4. 6.100 libpostproc 56. 5.100 / 56. 5.100 [udp @ 000002a7b2923c00] bind failed: Error number -10048 occurred udp://192.168.9.78:5004: Unknown error Thanks, Naveen B.
On Thu, 31 Aug 2023 16:27:47 +0200 "Naveen.B" <navins.2006@gmail.com> wrote:
Hello,
I have an ethernet camera connected to my ethernet port and I need to stream those Images using ffmpeg command, source address: 192.168.9.78 UDP port: 5004
ffmpeg command: ffmpeg eth0 -i udp://192.168.9.78:5004 error: C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg eth0 -i udp:// 192.168.9.78:5004 what is 'eth0'? ffmpeg version 2022-06-20-git-56419428a8-full_build-www.gyan.dev ...snip... [udp @ 000002a7b2923c00] bind failed: Error number -10048 occurred udp://192.168.9.78:5004: Unknown error Obviously, this does mean that ffmpeg can't start listen for incoming connection on 192.168.9.78 port 5004. Do you have 92.168.9.78 on your machine? I think it is very unlikely that -i udp:// is what you want. Because using 'raw' UDP you can't 'establish connection' from PC to camera. This is because there's no such a thing in UDP itself. Roughly saying, with UDP, tranmitter side just blindly sends packets from it's ip:port to receiver's ip:port without even knowing if there receiver is present at all. Doing this way, you theoretically must input your PCs ip:port somewhere in camera settings, because this in the only way for camera to know where to send packets (PC just can't 'connect' with 'raw' UDP). That's why upper level protocol (running on top of UDP) is typycally used for negotitating/establishing connection with camera, such as rtsp, rtp... So probably you need something like ffmpeg -rtsp_transport udp -i 'rtsp://USERNAME:PASSWORD@IPADDRESS:PORT/stream-url' Look at your camera manual, if available, to find out which protocol camera use. ffmpeg protocols documentation: https://ffmpeg.org/ffmpeg-protocols.html
I try with your suggestion, I don't see any error in the terminal window, but I do not see any stream of Images from the ethernet camera, C:\Naveen\projects\DMS\hardware\ficosa\a0\SCANIA_ffmpeg-6.0\bin>ffmpeg -rtsp_transport udp -i "rtsp://192.168.9.78:5004" ffmpeg version 6.0-essentials_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers built with gcc 12.2.0 (Rev10, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-sdl2 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libvpl --enable-libgme --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libtheora --enable-libvo-amrwbenc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-librubberband libavutil 58. 2.100 / 58. 2.100 libavcodec 60. 3.100 / 60. 3.100 libavformat 60. 3.100 / 60. 3.100 libavdevice 60. 1.100 / 60. 1.100 libavfilter 9. 3.100 / 9. 3.100 libswscale 7. 1.100 / 7. 1.100 libswresample 4. 10.100 / 4. 10.100 libpostproc 57. 1.100 / 57. 1.100 On Thu, Aug 31, 2023 at 11:26 PM Anatoly <anatoly@kazanfieldhockey.ru> wrote:
On Thu, 31 Aug 2023 16:27:47 +0200 "Naveen.B" <navins.2006@gmail.com> wrote:
Hello,
I have an ethernet camera connected to my ethernet port and I need to stream those Images using ffmpeg command, source address: 192.168.9.78 UDP port: 5004
ffmpeg command: ffmpeg eth0 -i udp://192.168.9.78:5004 error: C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg eth0 -i udp:// 192.168.9.78:5004 what is 'eth0'? ffmpeg version 2022-06-20-git-56419428a8-full_build-www.gyan.dev ...snip... [udp @ 000002a7b2923c00] bind failed: Error number -10048 occurred udp://192.168.9.78:5004: Unknown error Obviously, this does mean that ffmpeg can't start listen for incoming connection on 192.168.9.78 port 5004. Do you have 92.168.9.78 on your machine? I think it is very unlikely that -i udp:// is what you want. Because using 'raw' UDP you can't 'establish connection' from PC to camera. This is because there's no such a thing in UDP itself. Roughly saying, with UDP, tranmitter side just blindly sends packets from it's ip:port to receiver's ip:port without even knowing if there receiver is present at all. Doing this way, you theoretically must input your PCs ip:port somewhere in camera settings, because this in the only way for camera to know where to send packets (PC just can't 'connect' with 'raw' UDP). That's why upper level protocol (running on top of UDP) is typycally used for negotitating/establishing connection with camera, such as rtsp, rtp... So probably you need something like ffmpeg -rtsp_transport udp -i 'rtsp://USERNAME:PASSWORD@IPADDRESS:PORT/stream-url' Look at your camera manual, if available, to find out which protocol camera use. ffmpeg protocols documentation: https://ffmpeg.org/ffmpeg-protocols.html
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
hello I see you only gave input and no output, there should be a switch to direct the image to the screen But as I'm new to it , that's all I can say R. 2023. 09. 05. 10:08 keltezéssel, Naveen.B írta:
I try with your suggestion, I don't see any error in the terminal window, but I do not see any stream of Images from the ethernet camera,
C:\Naveen\projects\DMS\hardware\ficosa\a0\SCANIA_ffmpeg-6.0\bin>ffmpeg -rtsp_transport udp -i "rtsp://192.168.9.78:5004" ffmpeg version 6.0-essentials_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers built with gcc 12.2.0 (Rev10, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-sdl2 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libvpl --enable-libgme --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libtheora --enable-libvo-amrwbenc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-librubberband libavutil 58. 2.100 / 58. 2.100 libavcodec 60. 3.100 / 60. 3.100 libavformat 60. 3.100 / 60. 3.100 libavdevice 60. 1.100 / 60. 1.100 libavfilter 9. 3.100 / 9. 3.100 libswscale 7. 1.100 / 7. 1.100 libswresample 4. 10.100 / 4. 10.100 libpostproc 57. 1.100 / 57. 1.100
Hello, How could I achive it by directing ethernet images to the screen? Could anyone give input or help me on this topic. Thanks! On Tue, Sep 5, 2023, 11:02 frhun <frobihun@gmail.com> wrote:
hello I see you only gave input and no output, there should be a switch to direct the image to the screen But as I'm new to it , that's all I can say
R.
2023. 09. 05. 10:08 keltezéssel, Naveen.B írta:
I try with your suggestion, I don't see any error in the terminal window, but I do not see any stream of Images from the ethernet camera,
C:\Naveen\projects\DMS\hardware\ficosa\a0\SCANIA_ffmpeg-6.0\bin>ffmpeg -rtsp_transport udp -i "rtsp://192.168.9.78:5004" ffmpeg version 6.0-essentials_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers built with gcc 12.2.0 (Rev10, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-sdl2 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libvpl --enable-libgme --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libtheora --enable-libvo-amrwbenc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-librubberband libavutil 58. 2.100 / 58. 2.100 libavcodec 60. 3.100 / 60. 3.100 libavformat 60. 3.100 / 60. 3.100 libavdevice 60. 1.100 / 60. 1.100 libavfilter 9. 3.100 / 9. 3.100 libswscale 7. 1.100 / 7. 1.100 libswresample 4. 10.100 / 4. 10.100 libpostproc 57. 1.100 / 57. 1.100
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
Am 05.09.2023 um 11:47 schrieb Naveen.B:
Hello,
How could I achive it by directing ethernet images to the screen?
Use ffplay instead of ffmpeg. See also the first example in chapter 24.34.3: https://www.ffmpeg.org/ffmpeg-all.html Michael
Hello, could this ticket be deprecated to be not visible in google search or how can I raise it for deprecation? I see some of the confidential information highlighted which I forgot to mask it out. In google search this ticket is clearly visible to the public, where some of the confidential information is visible. Thanks, Naveen B. On Tue, Sep 5, 2023 at 11:58 AM Michael Koch <astroelectronic@t-online.de> wrote:
Am 05.09.2023 um 11:47 schrieb Naveen.B:
Hello,
How could I achive it by directing ethernet images to the screen?
Use ffplay instead of ffmpeg. See also the first example in chapter 24.34.3: https://www.ffmpeg.org/ffmpeg-all.html
Michael
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
On Mon, Sep 11, 2023 at 3:09 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
could this ticket be deprecated to be not visible in google search or how can I raise it for deprecation? I see some of the confidential information highlighted which I forgot to mask it out. In google search this ticket is clearly visible to the public, where some of the confidential information is visible.
Request from admin to remove it.
Thanks, Naveen B.
On Tue, Sep 5, 2023 at 11:58 AM Michael Koch <astroelectronic@t-online.de> wrote:
Am 05.09.2023 um 11:47 schrieb Naveen.B:
Hello,
How could I achive it by directing ethernet images to the screen?
Use ffplay instead of ffmpeg. See also the first example in chapter 24.34.3: https://www.ffmpeg.org/ffmpeg-all.html
Michael
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
Hello, How do I request for an admin to remove it? Thanks, On Mon, Sep 11, 2023 at 3:55 PM Paul B Mahol <onemda@gmail.com> wrote:
On Mon, Sep 11, 2023 at 3:09 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
could this ticket be deprecated to be not visible in google search or how can I raise it for deprecation? I see some of the confidential information highlighted which I forgot to mask it out. In google search this ticket is clearly visible to the public, where some of the confidential information is visible.
Request from admin to remove it.
Thanks, Naveen B.
On Tue, Sep 5, 2023 at 11:58 AM Michael Koch <
astroelectronic@t-online.de>
wrote:
Am 05.09.2023 um 11:47 schrieb Naveen.B:
Hello,
How could I achive it by directing ethernet images to the screen?
Use ffplay instead of ffmpeg. See also the first example in chapter 24.34.3: https://www.ffmpeg.org/ffmpeg-all.html
Michael
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
On Mon, Sep 11, 2023 at 4:03 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
How do I request for an admin to remove it?
Write email to trac admins. https://git.videolan.org/?p=ffmpeg.git;a=blob;f=MAINTAINERS;h=b5c116c3d4d72f... Search for trac bug tracker.
Thanks,
On Mon, Sep 11, 2023 at 3:55 PM Paul B Mahol <onemda@gmail.com> wrote:
On Mon, Sep 11, 2023 at 3:09 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
could this ticket be deprecated to be not visible in google search or how can I raise it for deprecation? I see some of the confidential information highlighted which I forgot to mask it out. In google search this ticket is clearly visible to the public, where some of the confidential information is visible.
Request from admin to remove it.
Thanks, Naveen B.
On Tue, Sep 5, 2023 at 11:58 AM Michael Koch <
astroelectronic@t-online.de>
wrote:
Am 05.09.2023 um 11:47 schrieb Naveen.B:
Hello,
How could I achive it by directing ethernet images to the screen?
Use ffplay instead of ffmpeg. See also the first example in chapter 24.34.3: https://www.ffmpeg.org/ffmpeg-all.html
Michael
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
Hi Sir how are you?I want to know how to live stream a movie using ffmpeg... On Thu, Aug 31, 2023, 7:58 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
I have an ethernet camera connected to my ethernet port and I need to stream those Images using ffmpeg command, source address: 192.168.9.78 UDP port: 5004
ffmpeg command: ffmpeg eth0 -i udp://192.168.9.78:5004 error: C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg eth0 -i udp:// 192.168.9.78:5004 ffmpeg version 2022-06-20-git-56419428a8-full_build-www.gyan.dev Copyright (c) 2000-2022 the FFmpeg developers built with gcc 11.3.0 (Rev1, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint libavutil 57. 27.100 / 57. 27.100 libavcodec 59. 33.100 / 59. 33.100 libavformat 59. 25.100 / 59. 25.100 libavdevice 59. 6.100 / 59. 6.100 libavfilter 8. 41.100 / 8. 41.100 libswscale 6. 6.100 / 6. 6.100 libswresample 4. 6.100 / 4. 6.100 libpostproc 56. 5.100 / 56. 5.100 [udp @ 000002a7b2923c00] bind failed: Error number -10048 occurred udp://192.168.9.78:5004: Unknown error
Thanks, Naveen B. _______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
As I know, camera should to be login , then you can access the stream, following is using RTSP as the protocol to communicate with camera and storage it a local file(record.mp4): ffmpeg -y -i rtsp://username:password@ip:port/stream-channel -vcodec copy -f mp4 record.mp4 the information marked with green should check with the document of the camera. On Wed, Sep 13, 2023 at 12:37 PM Duvvi Pydiraju <143pras@gmail.com> wrote:
Hi Sir how are you?I want to know how to live stream a movie using ffmpeg...
On Thu, Aug 31, 2023, 7:58 PM Naveen.B <navins.2006@gmail.com> wrote:
Hello,
I have an ethernet camera connected to my ethernet port and I need to stream those Images using ffmpeg command, source address: 192.168.9.78 UDP port: 5004
ffmpeg command: ffmpeg eth0 -i udp://192.168.9.78:5004 error: C:\Naveen\projects\DMS\software\ffmpeg_full\ffmpeg\bin>ffmpeg eth0 -i udp:// 192.168.9.78:5004 ffmpeg version 2022-06-20-git-56419428a8-full_build-www.gyan.dev Copyright (c) 2000-2022 the FFmpeg developers built with gcc 11.3.0 (Rev1, Built by MSYS2 project) configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint libavutil 57. 27.100 / 57. 27.100 libavcodec 59. 33.100 / 59. 33.100 libavformat 59. 25.100 / 59. 25.100 libavdevice 59. 6.100 / 59. 6.100 libavfilter 8. 41.100 / 8. 41.100 libswscale 6. 6.100 / 6. 6.100 libswresample 4. 6.100 / 4. 6.100 libpostproc 56. 5.100 / 56. 5.100 [udp @ 000002a7b2923c00] bind failed: Error number -10048 occurred udp://192.168.9.78:5004: Unknown error
Thanks, Naveen B. _______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
_______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user
To unsubscribe, visit link above, or email ffmpeg-user-request@ffmpeg.org with subject "unsubscribe".
participants (7)
-
Anatoly -
Duvvi Pydiraju -
frhun -
Michael Koch -
Naveen.B -
Paul B Mahol -
Peng Gao