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
# status 4 = closed | |
$Body = @" | |
{ | |
"comments": [ | |
{ | |
"parentCommentId": 0, | |
"content": "Just ye olde comment added and marked as closed..", | |
"commentType": 1 | |
} | |
], |
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
using NAudio.Wave; | |
namespace WaveCombineHelper | |
{ | |
/// <summary> | |
/// Sample Provider to allow fading in and out with delays. Based on https://gist.github.com/Ahmed-Abdelhameed/b867a8cfe739cd7a128b73a33d317402 | |
/// </summary> | |
public class DelayFadeSampleProvider : ISampleProvider | |
{ | |
private enum FadeState |
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
#!/bin/bash | |
# This script will compile and install a static ffmpeg build with support for nvenc in ubuntu. | |
# See the prefix path and compile options if edits are needed to suit your needs. | |
# NOTE: This build is made to target Ubunutu 16.04 Data-Science Azure VMs - With nVidia 418.xx drivers and CUDA SDK 9.0. | |
# It also relies on a hack described in https://trac.ffmpeg.org/ticket/6431#comment:7 to make glibc dynamic still. | |
# Long story short, you need to edit your ffmepg's configure script to avoid failures on libm and libdl. | |
# in function probe_cc, replace the _flags_filter line to: _flags_filter='filter_out -lm|-ldl' |