Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload single static page
path: './build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ATEM-Animation-Generator
An amazing ATEM DVE Animation Generator for creating "macro-based" animations for Blackmagic Design ATEM video switchers.

* **GRAB THE LATEST BUILD [HERE](https://github.com/ChgoChad/ATEM-Animation-Generator/releases)**

[Check out the demo](https://zmip.github.io).

![preview of the animation editor](https://forum.blackmagicdesign.com/download/file.php?id=50357)
Expand Down Expand Up @@ -84,7 +86,13 @@ As I've written earlier, I'm impressed with what the ATEM Mini's can do, hardwar

* ATEM Television Studio Pro 4K

* ATEM Constellation 8K
* ATEM Television Studio 4k8 - **New!**

* ATEM Television Studio HD8 - **New!**

* ATEM Televison Studio HD8ISO - **New!**

* ATEM Constellation 8K

## Development information

Expand Down
2 changes: 1 addition & 1 deletion build/js/devices-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions src/js/devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,36 @@ Generator.getDevices = function()
colors: 2
},

tvstudio4K8: {
name: 'ATEM Television Studio 4K8',
switchers: 1,
keyers: 4,
supersource: 1,
cameras: 8,
mediaplayers: 2,
colors: 2
},

tvstudiohd8iso: {
name: 'ATEM Television Studio HD8 ISO',
switchers: 1,
keyers: 4,
supersource: 1,
cameras: 8,
mediaplayers: 2,
colors: 2
},

tvstudiohd8: {
name: 'ATEM Television Studio HD8',
switchers: 1,
keyers: 4,
supersource: 1,
cameras: 8,
mediaplayers: 2,
colors: 2
},

constellation8k: {
name: 'ATEM Constellation 8K',
switchers: 4,
Expand Down