Skip to content

Instantly share code, notes, and snippets.

View martin-kokos's full-sized avatar
💭
Looking for collaboration

martin-kokos martin-kokos

💭
Looking for collaboration
View GitHub Profile
@AeroGenesiX
AeroGenesiX / readme(Linux).md
Last active September 15, 2025 17:08 — forked from polyfjord/batch_reconstruct.bat
Batch script for automated photogrammetry tracking workflow

Automated Video to 3D Scan Workflow for linux

This repository contains a robust Bash script for automating a photogrammetry workflow on Linux. It takes video files as input and uses FFmpeg and COLMAP to generate a 3D sparse point cloud, complete with intelligent error handling and automatic GPU detection.

This script is a heavily modified and debugged Linux version of an original concept by polyfjord.


Features

@digitalsignalperson
digitalsignalperson / stream.sh
Last active September 1, 2025 21:03
xdp screen cast example, modified to pipe to ffmpeg
mkfifo /tmp/gfifo
./xdp-screen-cast-ffmpeg.py & # or run in another terminal
# Note the gstreamer pipeline
# 'pipewiresrc fd=%d path=%u ! videorate ! video/x-raw,framerate=60/1 ! videoconvert ! filesink location=/tmp/gfifo'
# I specified a 60/1 frameerate. You can do other pre-processing here, or offload it to ffmpeg.
# Encode the stream and pipe to netcat
# note: must specify correct resolution here
# we can now use h264_nvenc, mpegts, and anything else ffmpeg has
@AnatomicJC
AnatomicJC / android-backup-apk-and-datas.md
Last active December 11, 2025 06:30
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

Note: This gist may be outdated, thanks to all contributors in comments.

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !