One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/usr/bin/env bash | |
| # Small shell script to more easily automatically download and transcribe live stream VODs. | |
| # This uses YT-DLP, ffmpeg and the CPP version of Whisper: https://github.com/ggerganov/whisper.cpp | |
| # Use `./transcribe-vod help` to print help info. | |
| # MIT License | |
| # Copyright (c) 2022 Daniils Petrovs |
| #!/usr/bin/python3 | |
| """ | |
| Script that creates Personal Access Token for Gitlab API; | |
| Tested with: | |
| - Gitlab Community Edition 10.1.4 | |
| - Gitlab Enterprise Edition 12.6.2 | |
| - Gitlab Enterprise Edition 13.4.4 | |
| """ | |
| import sys | |
| import requests |
| //Workaround using JSoup to obtain the desired behavior described in #858 for the HTML output. | |
| //see https://github.com/asciidoctor/asciidoctor/issues/858 | |
| static private Pattern pattern = Pattern.compile("Figure ([0-9]+)\\."); | |
| /** | |
| * Main method for the #858 workaround. | |
| * | |
| * @param doc | |
| * JSoup document (type is {@link org.jsoup.nodes.Document}) |
| # Author: Pieter Noordhuis | |
| # Description: Simple demo to showcase Redis PubSub with EventMachine | |
| # | |
| # Update 7 Oct 2010: | |
| # - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
| # the WebSocket protocol implementation in the cramp gem does not work | |
| # well with Chrome's (newer) WebSocket implementation. | |
| # | |
| # Requirements: | |
| # - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby |