Command Flags
Flag | Options | Description |
---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
import * as web3 from '@solana/web3.js'; | |
// Create connection | |
function createConnection(url = "https://testnet.solana.com") { | |
return new web3.Connection(url); | |
} | |
const connection = createConnection(); | |
// Generate account |
Command Flags
Flag | Options | Description |
---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
$('document').ready(function () { | |
var web3 = new Web3(); | |
var global_keystore; | |
function setWeb3Provider(keystore) { | |
var web3Provider = new HookedWeb3Provider({ | |
host: "https://mainnet.infura.io/-.....", | |
transaction_signer: keystore | |
}); | |
web3.setProvider(web3Provider); |