Please report any issues
fn position_in_camera_plane(p: vec3<f32>) -> vec2<f32> {
return vec2(dot(p, camera_right.xyz), dot(p, camera_up.xyz));
# Add this to your .gitconfig and use `git recent-branches` | |
[alias] | |
recent-branches = branch -v --sort=-committerdate |
const object_to_watch = obj; // Change to the object you are inspecting | |
const property_to_watch = 'example'; // Change to the property name in the object you are inspecting (here obj.example) | |
// Store the original value | |
object_to_watch.__storedValue = object_to_watch[property_to_watch]; | |
Object.defineProperty(object_to_watch, property_to_watch, { | |
get() { | |
return this.__storedValue; | |
}, |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
body{ | |
padding: 0; | |
margin: 0; | |
} | |
</style> |
ARCH=$(uname -m)
echo "Detected OS: GNU/Linux"
if [[ "$ARCH" == "x86_64" ]]; then
echo "Detected 64 bit intel"
BINARIES_URL="https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2023-04-19-14-14/ffmpeg-n5.1.3-6-g1e413487bf-linux64-gpl-shared-5.1.tar.xz -O ffmpeg.tar.xz"
elif [[ "$ARCH" == "aarch64" ]]; then
# ARM linux setup
echo "Detected ARM"
While playing with some libraries, I found out that somewhere in the past, jonathonf put a bunch of ppa in private mode. Looks like these are back now.
Here is an archived link of a statement at launchpad.net/~jonathonf: https://web.archive.org/web/20191216131452/https://launchpad.net/~jonathonf
As far as I understand, it came down to this xkcd:
Don't trust me, see the real source: https://ffmpeg.org/doxygen/trunk/pixfmt_8h.html#a9a8e335cf3be472042bc9f0cf80cd4c5
Also, if you want gstreamer pixel formats: https://gstreamer.freedesktop.org/documentation/video/video-format.html#GstVideoFormat
Last updated April 13th 2023
Format | Desc |
---|---|
AV_PIX_FMT_NONE = -1, |
{ | |
abench: { | |
name: 'abench', | |
description: 'Benchmark part of a filtergraph.', | |
inputs: [ [Object] ], | |
outputs: [ [Object] ], | |
priv_class: { type: 'Class', class_name: 'abench', options: [Object] }, | |
flags: { | |
DYNAMIC_INPUTS: false, | |
DYNAMIC_OUTPUTS: false, |
serve: compile | |
go run server.go | |
compile: main.go | |
GOARCH=wasm GOOS=js go build -o test.wasm main.go |