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
ffmpeg |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
@ECHO OFF | |
REM This program assumes that all your audio files are OGG and all your images are PNG (Suggested dimensions: 1280x720 or 1920x1080) | |
REM In case you have mixed formats, please convert all to one, if you use a different format, edit this file and change the format. | |
REM The output will be in MKV format, you can also change this but the configuration may not be optimal for other formats | |
REM The resulting video will have quality options as high as the image resolution | |
REM IMPORTANT: LOW QUALITY IMAGES MAY DECREASE THE QUALITY OF THE AUDIO WHEN UPLOADED TO YOUTUBE | |
ECHO Make sure to read the comments before executing the script. |
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
def generate_random(seed): | |
digits = len(str(seed)) | |
while True: | |
candidate_number = str(seed**2) | |
candidate_number_filled = '0' * (2 * digits - len(candidate_number)) + candidate_number | |
seed = int(candidate_number_filled[digits//2:-digits//2]) | |
yield seed |
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
ffmpeg |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
chromium-chromedriver |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
dependencies: | |
- python=3.7 | |
- ipywidgets==7.5.1 | |
- bqplot==0.11.0 | |
- numpy== 1.19.2 | |
- scipy==1.5.2 |
OlderNewer