| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abuse#!/bin/bash
#Creates an animated thumbnail of a video clip
#This script uses scene cuts instead of fixed time intervals, and does not work well for videos with few/infrequent scene cuts
if [ -z "$1" ];then echo "Usage: <Video Files...> [outputs to same dir as input]" &>2;exit 1;fi
unsigned char* rgb_to_monochrome(unsigned char *rgbImg, int width, int height, int colorspace, int weighted) { //RGB(A) -> Mono
unsigned char *monoImg = malloc(width * height);
int m = 0, n = 0;
register r = width * height;
Brute force a 3x3 magic square of squares extremely quickly
C
| Back | FazBrowse Home | New Git URL |