Skip to content

Commit

Permalink
fix docs typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tqk2811 committed Jun 6, 2022
1 parent 0a2ac0e commit dd17a92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ ffmpegArg.AddOutput(
new VideoFileOutput(@"out.mp4", overlay_map, background_videoMap.AudioMaps.First())
.T(TimeSpan.FromSeconds(5))//output extension ( -t )
.AndSet(
x => x.ImageInputAVStream//output video stream
x => x.ImageOutputAVStream//output video stream
.R(24)//output, video, per-stream extension ( -r )
)
);
ffmpegArg.AddOutput(
new VideoFileOutput(@"out2.mp4", image_maps.Last(), background_videoMap.AudioMaps.First())
.AndSet(x => x.ImageInputAVStream.R(30)));
.AndSet(x => x.ImageOutputAVStream.R(30)));

var renderResult = ffmpegArg
.Render(c => c
Expand Down

0 comments on commit dd17a92

Please sign in to comment.