duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |
| #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' |
| import re, sys | |
| from xml.dom import minidom, Node | |
| import math | |
| import argparse | |
| class Matrix: | |
| def m(self, i, j, value=None): | |
| if i >= self.rows or j >= self.cols: | |
| raise ValueError("Argument out of range") |
| ################################################################################################################################### | |
| ### ### | |
| ### Motion-Compensated Temporal Denoise: MCTD() ### | |
| ### ### | |
| ### v1.4.20 by "LaTo INV.", mod 2 by 06_taro ### | |
| ### ### | |
| ### 29 November 2011 ### | |
| ### |
| import sys | |
| import re | |
| import os | |
| def read_tc_v1(f, params): | |
| frame_count = None | |
| if "frame-count" in params: | |
| frame_count = int(params["frame-count"]) | |
| parts = [] |
| #!/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 |