view ken_source_downloader.c @ 132:71df0cf3aa05 default tip

add create.py this is a script to render out video files from entire albums, singles, or EPs. eventually it can be edited to be more robust (such as automatically finding discogs/musicbrainz links) but I think it's pretty damn good for now. It's basically just an ffmpeg frontend with a few hardcoded options that are suitable for this kind of thing.
author Paper <paper@tflc.us>
date Fri, 02 Jan 2026 10:35:03 -0500
parents 05803e046878
children
line wrap: on
line source

#include <time.h>
#include <stdio.h>
#include <stdlib.h>

int main(void) {
	srand(time(NULL));
	FILE* ken = fopen("MVI_1332 (2).MOV", "w");
	long i;
	for (i = 0; i <= 1529118700; i++) {
		fprintf(ken, "%c", rand() % 255);
		// make it 500x slower
		printf("Downloading ken source... %d%% complete\r", i/1529118700*100);
	}
	fclose(ken);
}