Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
unkleho committed Oct 23, 2022
0 parents commit 5c89425
Show file tree
Hide file tree
Showing 27 changed files with 10,626 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# Samples
public/audio/splice-samples
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.10
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Spectacle

Had to use `next-transpile-modules` for `spectacle`. Then ran into window error as `spectacle` is client side only. Moved entire deck into own component and dynamically loaded that from Next page so it never touches SSR. Fast refresh doesn't create new slides unfortunately.

## Private

This should be private as it has samples

Need to create another repo.

https://reactflow.dev/

## Talk Tech

### OBS software

Recorded the talk with DSLR cam (thank's to @lazygamer) and Elgato Wave mic.

### Loopback

Needed to internally route audio from Chrome to OBS on a separate channel to the mic.

### Handbrake

Exported from OBS to mkv file, this format allows multiple audio channels (eg. for multi language support). However Final Cut Pro didn't support this! So had to convert to mp4, twice for each channel (mic and Chrome audio).

### Final Cut Pro

Arranged it all in Final Cut Pro, nothing fancy. Exported to mov, couldn't export to mp4, so had to use Handbrake to convert to mov to mp4.
Loading

0 comments on commit 5c89425

Please sign in to comment.