/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

keyj.emphy.de
| | readrust.net
7.6 parsecs away

Travel
| | Read Rust collects and categorises interesting posts related to the Rust programming language. This page lists posts in the Performance category.
| | videoblerg.wordpress.com
4.4 parsecs away

Travel
| | I've been in the streaming media industry since 2008 and have seen a lot of misinformation regarding both FFmpeg and libx264. In this post I hope to help shed some light on what does and does not work. Streaming media, at it's core, requires three basic things. 1) Constant frame rate. 2) An even keyframe...
| | blog.danman.eu
7.9 parsecs away

Travel
| | [AI summary] The user is trying to capture and play a video stream from a HDMI extender device. They initially faced issues with capturing the stream using tools like Wireshark and Python scripts, but eventually managed to extract the video using a script provided by danman. The script uses a specific IP and port (226.2.2.2:2068) and outputs the video in MJPEG format. The user encountered some glitches when playing the stream directly but resolved it by saving the output to a file. The community is actively discussing ways to improve the script and extract more data from the device.
| | binarydebt.wordpress.com
28.7 parsecs away

Travel
| Kernel symbols are names of functions and variables. Global symbols are those which are available outside the file they are declared in. Global symbols in the Linux kernel currently running on a system are available through `/proc/kallsyms` file. This includes symbols defined inside kernel modules currently loaded. Global symbols are of two types: those explicitly...