Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| #!/usr/bin/python3.5 | |
| #example usage: mp3ytclipper.py "https://www.youtube.com/watch?v=MgxK5vm6lvk" later 44.3 46.3 | |
| import sys, re, subprocess, youtube_dl, os | |
| if len(sys.argv) != 5: | |
| print("usage: mp3ytclipper.py <youtubeurl> <outfilename> <starttime> <endtime>") | |
| exit() |