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
import argparse | |
import os | |
import json | |
parser = argparse.ArgumentParser(description='Download all chapters as audio from a youtube link') | |
parser.add_argument('url', help='Link to youtube video') | |
args = parser.parse_args() | |
print('Requesting information for: ' + args.url + '\n') |
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
## Dungeondraft Map Merger Utility | |
## Author: Brian Latwis & mtvjr | |
## Date: 04/09/2020 | |
import argparse | |
import json | |
import random | |
from copy import deepcopy | |
## Create a set to store unique node ids |