This file contains hidden or 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
| 2teams() { | |
| NOW=$(date +"%Y-%m-%d_%H%M") | |
| if [ ! -z $2 ] ; then | |
| echo $NOW"_"$2.mp4 | |
| ffmpeg -i $1 -codec copy $NOW"_"$2.mp4 | |
| else | |
| echo $NOW"_teamsvid".mp4 | |
| ffmpeg -i $1 -codec copy $NOW"_teamsvideo".mp4 | |
| fi | |
| } |
This file contains hidden or 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
| param appPrefix string = '${uniqueString(resourceGroup().id)}' | |
| param logAnalyticsWorkspaceName string = 'log-${appPrefix}' | |
| param storageAccountName string = 'st${appPrefix}' | |
| param location string = resourceGroup().location | |
| resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2020-08-01' = { | |
| name: logAnalyticsWorkspaceName | |
| location: location | |
| properties: { | |
| sku: { |