Skip to content

Instantly share code, notes, and snippets.

View feedsbrain's full-sized avatar
:octocat:
Catching 8 dimensions of wellness

Indra Gunawan feedsbrain

:octocat:
Catching 8 dimensions of wellness
View GitHub Profile
@feedsbrain
feedsbrain / mixing_recordings.md
Created August 26, 2021 10:25 — forked from igracia/mixing_recordings.md
Mixing Recordings

Working with Twilio Room Recordings

The following guide will show you how to mix several audio and video tracks together, forming a grid. For this example, we will use two video and two audio tracks. The video tracks will be placed side by side in a 1024x768 output file.


UPDATE - Video Recording Compositions API is out!

Yes! No ned to go through this process alone anymore. We've recently released the Twilio Recording Composition API. This API will allow you to compose and transcode you Room Recordings. You can find the reference docs here

@feedsbrain
feedsbrain / gitlab_access_token.md
Created November 2, 2020 04:21 — forked from michaellihs/gitlab_access_token.md
Create Gitlab Personal Access Token using curl

Create Gitlab Personal Access Token using curl

Prerequisites

  • You need a Gitlab server up and running
  • You need user credentials for a (admin) user on the Gitlab server
  • You need curl and Perl on your server
@feedsbrain
feedsbrain / command.txt
Created June 29, 2018 17:13 — forked from nrk/command.txt
Using ffprobe to get info from a file in a nice JSON format
ffprobe -v quiet -print_format json -show_format -show_streams "lolwut.mp4" > "lolwut.mp4.json"
@feedsbrain
feedsbrain / run.csx
Created April 28, 2017 15:30 — forked from jakkaj/run.csx
FFMPEG inside an Azure function.
#r "Microsoft.WindowsAzure.Storage"
using Microsoft.WindowsAzure.Storage.Blob;
using System.Diagnostics;
using System.IO;
public static async Task Run(Stream myBlob, string name, Binder binder, TraceWriter log)
{
log.Info($"Jordan C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");