.
- ├── avio-list-dir
- ├── avio-reading
- ├── decode-audio
- ├── decode-video
- ├── demuxing-decoding
- ├── encode-audio
- ├── encode-video
- ├── extract-mvs
- ├── filter-audio
.
ffmpeg 4.4.4
# SSH Agent Functions | |
# Mark Embling (http://www.markembling.info/) | |
# | |
# How to use: | |
# - Place this file into %USERPROFILE%\Documents\WindowsPowershell (or location of choice) | |
# - Import into your profile.ps1: | |
# e.g. ". (Resolve-Path ~/Documents/WindowsPowershell/ssh-agent-utils.ps1)" [without quotes] | |
# - Enjoy | |
# | |
# Note: ensure you have ssh and ssh-agent available on your path, from Git's Unix tools or Cygwin. |
function git_prompt { | |
if (-not $(Get-InstalledModule -Name "posh-git")) { | |
Install-Module posh-git -Scope CurrentUser -Force | |
} | |
if (-not (Get-Module -Name "posh-git")) { | |
Import-Module -Name posh-git -Scope Global | |
} | |
else { | |
$GitPromptSettings.EnablePromptStatus = -not $GitPromptSettings.EnablePromptStatus | |
} |
The only way I've succeeded so far is to employ SSH.
Assuming you are new to this like me, first I'd like to share with you that your Mac has a SSH config
file in a .ssh
directory. The config
file is where you draw relations of your SSH keys to each GitHub (or Bitbucket) account, and all your SSH keys generated are saved into .ssh
directory by default. You can navigate to it by running cd ~/.ssh
within your terminal, open the config
file with any editor, and it should look something like this:
Host * AddKeysToAgent yes
> UseKeyChain yes
// Browser compat | |
window.AudioContext = window.AudioContext || window.webkitAudioContext; | |
window.RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection || window.mozRTCPeerConnection; | |
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia; | |
var key = window.location.hash.substring(1); | |
var audio_context = new AudioContext(); | |
var local_output = audio_context.createMediaStreamDestination(); |
// Browser compat | |
window.AudioContext = window.AudioContext || window.webkitAudioContext; | |
window.RTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection || window.mozRTCPeerConnection; | |
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia; | |
var key = window.location.hash.substring(1); | |
var audio_context = new AudioContext(); | |
var local_output = audio_context.createMediaStreamDestination(); |
$.ajax({ | |
type: "POST", | |
url: url, | |
contentType: "application/json; charset=utf-8", | |
data: JSON.stringify(data), | |
dataType: "json", | |
statusCode: { | |
200: function() {alert("成功")} | |
}, | |
error: function(xhr, status, error) { |