UNPKG
add-music-to-video
Version:
latest (1.1.1)
1.1.1
1.1.1-alpha-25.0
1.1.1-alpha-24.0
1.1.1-alpha-23.0
1.1.1-alpha-22.0
1.0.13
1.0.12
1.0.11
1.0.11-alpha-15.0
1.0.11-alpha-14.0
1.0.11-alpha-13.0
1.0.10
1.0.10-alpha-11.0
1.0.10-alpha-10.0
1.0.9
1.0.9-alpha-9.0
1.0.9-alpha-8.0
1.0.8
1.0.7
1.0.6
1.0.6-alpha-7.0
1.0.6-alpha-6.0
1.0.6-alpha-5.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Add background music to my videos very easily
github.com/mykeels/add-music-to-video
add-music-to-video
/
dist
/
types
/
cli.d.ts
10 lines
(9 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
CliOptions
{
inputVideoFilePath
?:
string
;
musicSource
?:
"random"
|
"youtube"
|
"local"
;
youtubeUrl
?:
string
;
localMusicPath
?:
string
;
outputPath
?:
string
;
help
?:
boolean
; }
export
declare
const
DEFAULT_OPTIONS
:
CliOptions
;