-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5c89425
Showing
27 changed files
with
10,626 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains 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
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 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v18.10 |
This file contains 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
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. |
Oops, something went wrong.