A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
A list of useful commands for the ffmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| #!/usr/bin/env python3.2 | |
| # Benjamin James Wright <bwright@cse.unsw.edu.au> | |
| # Maximum Subarray | |
| def max_subarray(L): | |
| current_sum = 0 | |
| current_index = -1 | |
| best_sum = 0 | |
| best_start_index = -1 | |
| best_end_index = -1 |