This file contains hidden or 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
| ; Soul Calibur VI: Cinema Quality | |
| ; Version: 1.01 | |
| ; TextureQuality@3 is combined with ViewDistanceQuality@Cine as the setting does not exist on SC6 | |
| [TextureQuality@3] | |
| r.Streaming.MipBias=-2 | |
| r.SkeletalMeshLODBias=-2 | |
| r.MaxAnisotropy=16 | |
| r.Streaming.LimitPoolSizeToVRAM=0 | |
| r.Streaming.PoolSize=3000 |
This file contains hidden or 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
| # Rename Images with Date Photo Taken | |
| # Purpose: Renames image files in a folder based on date photo taken from EXIF metadata | |
| # Original Author: Matthew Renze | |
| # Usage: python.exe rename.py input-folder | |
| # - input-folder = (optional) the directory containing the image files to be renamed | |
| # Examples: python rename.py /path/to/photos |
This file contains hidden or 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
| # First, you should install flickrapi | |
| # pip install flickrapi | |
| import flickrapi | |
| import urllib | |
| from PIL import Image | |
| # Flickr api access key | |
| flickr=flickrapi.FlickrAPI('c6a2c45591d4973ff525042472446ca2', '202ffe6f387ce29b', cache=True) |