Here are some resources Github repositories and documentation to get you started with AI Vision.
- Docs: https://docs.reka.ai
Here are some resources Github repositories and documentation to get you started with AI Vision.
| clear | |
| search_dir="/mnt/c/" | |
| files="$(find -L "$search_dir" -type f -name '*.mp4')" | |
| echo "Count: $(echo -n "$files" | wc -l)" | |
| echo "$files" | while read file; do | |
| onlyFilename=$(basename "$file") | |
| onlyName=$(basename -s .mp4 "$file") | |
| onlyDir="$(dirname "${file}")" |
| { | |
| "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "variables": {}, | |
| "resources": [], | |
| "outputs": {}, | |
| "functions": [] | |
| } |
(https://www.twitch.tv/fboucheros)
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Compile Markdown", | |
| "type": "shell", | |
| "command": "md2html ${file}", | |
| "group": { | |
| "kind": "build", | |
| "isDefault": true |
| { | |
| "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "location": { | |
| "type": "string" | |
| }, | |
| "virtualMachineName": { | |
| "type": "string", | |
| "metadata": { |
| #Install Chocolatey | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| #Install Software | |
| choco install visualstudiocode -y | |
| choco install git -y | |
| choco install nodejs-lts -y |