Skip to content

Instantly share code, notes, and snippets.

View mpicciolli's full-sized avatar

mpicciolli

View GitHub Profile
@jakkaj
jakkaj / run.csx
Created February 26, 2017 01:08
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");