-i - ignore errors
-c - continue
-t - use video title as file name
--extract-audio - extract audio track
| let spotifyCredentials | |
| let widget = await createWidget() | |
| Script.setWidget(widget) | |
| Script.complete() | |
| async function createWidget() { | |
| let widget = new ListWidget() | |
| let spotifyIcon = await getImage("spotify-icon.png") | |
| widget.backgroundColor = new Color("1e2040") |
| // Variables used by Scriptable. | |
| // These must be at the very top of the file. Do not edit. | |
| // icon-color: blue; icon-glyph: laptop-code; | |
| // share-sheet-inputs: url; | |
| /******************************************* | |
| * * | |
| * /\ * | |
| * / \ _ __ _ __ * | |
| * / /\ \ | '_ \| '_ \ * | |
| * / ____ \| |_) | |_) | * |
| import Image | |
| import photos | |
| import console | |
| import ImageOps | |
| # Pick screenshots to combine | |
| screenshot1 = photos.pick_image(show_albums=True) | |
| screenshot2 = photos.pick_image(show_albums=True) | |
| screenshot3 = photos.pick_image(show_albums=True) |
| ; WinHttpRequest.ahk | |
| ; | |
| ; Usage is similar to HTTPRequest (by VxE), | |
| ; Please visit the HTTPRequest page (http://goo.gl/CcnNOY) for more details. | |
| ; | |
| ; Supported Options: | |
| ; NO_AUTO_REDIRECT | |
| ; Timeout: <Seconds> | |
| ; Proxy: <IP:Port> | |
| ; Codepage: <CPnnn> - e.g. "Codepage: 65001" |
| import sublime | |
| import sublime_plugin | |
| import OracleSQL.oracle_lib | |
| class OracleGotoBodyCommand(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| def _on_change(result): | |
| try: | |
| ln = int(result) - 1 |
| import sublime | |
| import re | |
| import os.path | |
| import os | |
| from . import oracle_lib | |
| from Default import exec as execmod | |
| RE_ENTITIES = re.compile("^\\((.+?)/(0):[0-9]+\\) ([0-9]+):[0-9]+ (.+)$", re.M) | |
| class OracleExecCommand(execmod.ExecCommand): |
| #!/bin/bash | |
| # | |
| # convert-video.sh | |
| # | |
| # Copyright (c) 2013-2014 Don Melton | |
| # | |
| about() { | |
| cat <<EOF | |
| $program 2.0 of December 3, 2014 |