Dagger
Search

videostitch

No long description provided.

Installation

dagger install github.com/marcosnils/daggerverse/videostitch@b86b76dcfc25fac08b96ead67479fb055f718df7

Entrypoint

Return Type
Videostitch
Example
dagger -m github.com/marcosnils/daggerverse/videostitch@b86b76dcfc25fac08b96ead67479fb055f718df7 call \
func (m *MyModule) Example() *dagger.Videostitch  {
	return dag.
			Videostitch()
}
@function
def example() -> dagger.Videostitch:
	return (
		dag.videostitch()
	)
@func()
example(): Videostitch {
	return dag
		.videostitch()
}

Types

Videostitch 🔗

stitch() 🔗

example usage: “dagger call container-echo –string-arg yo”

Return Type
File !
Arguments
NameTypeDefault ValueDescription
srcDirDirectory !-No description provided
Example
dagger -m github.com/marcosnils/daggerverse/videostitch@b86b76dcfc25fac08b96ead67479fb055f718df7 call \
 stitch --src-dir DIR_PATH
func (m *MyModule) Example(srcDir *dagger.Directory) *dagger.File  {
	return dag.
			Videostitch().
			Stitch(srcDir)
}
@function
def example(src_dir: dagger.Directory) -> dagger.File:
	return (
		dag.videostitch()
		.stitch(src_dir)
	)
@func()
example(srcDir: Directory): File {
	return dag
		.videostitch()
		.stitch(srcDir)
}