This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# CAUTION!!! THIS SCRIPT IS NO WARRANTY!!! | |
: << _COMMENT_ | |
How to compile libav/x264 binaries for both 32bit and 64bit on Windows | |
At first, you should install Git into your Windows. | |
1. Download Git from | |
http://msysgit.googlecode.com/files/Git-1.7.6-preview20110708.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
# reorder_args.py for Python 2.x | |
# written by Chikuzen | |
import sys | |
import os | |
def usage(): | |
print "usage : reorder_args.py <func name> <num of args> <new order> <filename>\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#vsenc.py | |
#coding: utf-8 | |
import sys | |
from subprocess import Popen, PIPE | |
import vapoursynth as vs | |
x264_binary_path = 'D:/tools/x86/x264.exe' | |
avconv_binary_path = 'D:/tools/x86/avconv.exe' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> | |
#include "turbojpeg.h" | |
typedef struct { | |
tjhandle tjh; | |
FILE *src; | |
unsigned char *src_buff; | |
unsigned char *dst_buff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#finesharp.py - finesharp module for VapourSynth | |
#original author : Didee (http://forum.doom9.org/showthread.php?t=166082) | |
# requirement: RemoveGrain.dll, Repair.dll | |
import vapoursynth as vs | |
class InvalidArgument(Exception): | |
def __init__(self, value): | |
self.value = value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
'''port of EasyVFR for VapourSynth''' | |
__author__ = 'Chikuzen <chikuzen.mo at gmail dot com>' | |
__version__ = '0.2.5' | |
import vapoursynth as vs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#finesharp.py - finesharp module for VapourSynth | |
#original author : Didee (http://forum.doom9.org/showthread.php?t=166082) | |
# requirement: RemoveGrain.dll, Repair.dll | |
# VapourSynth r19 or later | |
import vapoursynth as vs | |
class InvalidArgument(Exception): | |
def __init__(self, value): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include "avisynth.h" | |
static const AVS_Linkage* AVS_linkage = 0; | |
class Footprint { | |
int index; | |
int width; | |
int height; | |
BYTE* map; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include <malloc.h> | |
#include <windows.h> | |
#include <emmintrin.h> | |
#include "avisynth.h" | |
static const AVS_Linkage* AVS_linkage = 0; | |
static __forceinline __m128i mm_movehl_si128(const __m128i& xmm0) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define LOGO "RemoveGrain 1.0\n" | |
// An Avisynth plugin for removing grain from progressive video | |
// | |
// By Rainer Wittmann <[email protected]> | |
// | |
// This program is free software; you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation; either version 2 of the License, or | |
// (at your option) any later version. | |
// |
OlderNewer