Media Forensics Using Azure Cognitive Services

This Azure Function will process images using the Azure Cognitive Services Computer Vision, transcribe text from audio WAV files using the Azure Cognitive Services Bing Speech API and perform text analysis on the transcribed text using the Azure Cognitive Services Text Analysis API

What you'll need

To make this demo work, you need to clone or download this repository, then -

Edit the appsettings.json files with your own values

{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountName=[StorageAccountName];AccountKey=[Storage Account Key];",
    "AzureWebJobsDashboard": "DefaultEndpointsProtocol=https;AccountName=[StorageAccountName];AccountKey=[Storage Account Key];",
    "DocumentDBConnection": "AccountEndpoint=[Document DB EndPoint];AccountKey=[Document DB Account Key];"
	"ComputerVisionSubscriptionKey": "[Your Cognitive Services Computer Vision Key]"
  }
}

Upload the Functions code to you Azure Function App Environment

Learn more about developing Azure Functions