forked from wulkano/Kap
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
a1aed0a
commit 8bd89ce
Showing
219 changed files
with
12,951 additions
and
8,167 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ node_modules | |
/renderer/.next | ||
/app/dist | ||
/dist | ||
/dist-js |
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
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
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
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
import {Format} from './types'; | ||
|
||
export const supportedVideoExtensions = ['mp4', 'mov', 'm4v']; | ||
|
||
const formatExtensions = new Map([ | ||
['av1', 'mp4'] | ||
]); | ||
|
||
export const formats = [Format.mp4, Format.av1, Format.gif, Format.apng, Format.webm]; | ||
|
||
export const getFormatExtension = (format: Format) => formatExtensions.get(format) ?? format; | ||
|
||
export const defaultInputDeviceId = 'SYSTEM_DEFAULT'; | ||
|
Oops, something went wrong.