Skip to content

Commit

Permalink
docs: Fix mistake in multitrack docs (#3381)
Browse files Browse the repository at this point in the history
Fix a mistake in a code sample on how to add a video track.
  • Loading branch information
vitoyucepi authored Sep 3, 2023
1 parent 73df74c commit 7e014f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/content/multitrack.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ image = single("/path/to/image.png")
let {audio = playlist_audio, metadata, track_marks} = source.track(s)
# Get the video track from our static image
let {video = image_video} = source.tracks(s)
let {video = image_video} = source.tracks(image)
# Mux the audio tracks with the image
s = source({
Expand Down

0 comments on commit 7e014f0

Please sign in to comment.