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
| #!/usr/bin/python | |
| import csv | |
| import random | |
| records=9000000 | |
| print("Making %d records\n" % records) | |
| fieldnames=['id','name','age','city'] | |
| writer = csv.DictWriter(open("people.csv", "w"), fieldnames=fieldnames) |