I only just found out about this… # Send data via TCP to host 127.0.0.1 port 12201 echo “hello” >/dev/tcp/127.0.0.1/12201 # Send data via UDP to host 127.0.0.1 port 12201 echo “hello” >/dev/udp/127.0.0.1/12201 Now is there a way to listen via the same /dev/tcp|udp end point?
Rebuilding FFmpeg with NVENC and AAC on Ubuntu
This mini guide will show you how to rebuild the exact version of FFmpeg that comes with your version of Ubuntu and just add support for NVidia GPU encoding via the NVENC API and ACC via libfdk_aac. # Download and unzip the NVIDIA Video Codec SDK from https://developer.nvidia.com/nvidia-video-codec-sdk wget https://developer.nvidia.com/video-sdk-601 unzip nvidia_video_sdk_6.0.1.zip # Copy the […]