This article describes how to record audio using the Web Audio API in JavaScript. The related resources are shown below.
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
var ffmpeg = require('fluent-ffmpeg'); | |
var axios = require('axios'); | |
// make sure you set the correct path to your video file | |
var proc = ffmpeg('./input.mp4') | |
.videoFilters({ | |
filter: 'drawtext', | |
options: { | |
fontfile:'font.ttf', | |
text: 'THIS IS TEXT', |
This is an effort to document what is known about Google's (Blogger's/Blogspot's) image URL parameters. Some of these options were taken from existing first or third party documentation (see the links at the end of this document), but the majority is based off my own investigations.
- On Blogger's image URL's:
2.bp.blogspot.com/-OF7u67HQE1M/VHc8S8qJTDI/AAAAAAAACxI/UD-11c63diQ/
s1600
/005.png
- On just about any googleusercontent image URL:
https://lh3.googleusercontent.com/Jvmz11cLrvNIHG_LWjVO9B-UV2IN4Cfk1pycbhWZl6IriMgCAGCOFuBRtoHaiZ6xeVGqCugZcCql=
w176-h176-n-o
Replace the bolded parts with the parameters.
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
algeria : Algeria | |
bahrain : Bahrain | |
comoros : Comoros | |
djibouti : Djibouti | |
egypt : Egypt | |
iraq : Iraq | |
jordan : Jordan | |
kuwait : Kuwait | |
lebanon : Lebanon | |
libya : Libya |
Steps to publish a npm package to beta that won't be available via latest and won't auto install on ncu updates etc
- Ensure any compile is run
npm run dist
etc - Modify version in package.json to the following format (match with existing verion numbers etc)
"version": "0.1.120-beta.1"
where beta.x is the number of those betas - Publish to npm
npm publish --tag beta
There are two options for install:
- Always install beta with
npm install packagename@beta
- Install specific version with
npm install [email protected]