mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
docs: update documentation to include sub video function
This commit is contained in:
parent
a2c899d02e
commit
a31f3886fd
1 changed files with 9 additions and 0 deletions
|
@ -72,6 +72,15 @@ FFMpeg.Join(@"..\joined_video.mp4",
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Create a sub video
|
||||||
|
``` csharp
|
||||||
|
FFMpeg.SubVideo(inputPath,
|
||||||
|
outputPath,
|
||||||
|
TimeSpan.FromSeconds(0)
|
||||||
|
TimeSpan.FromSeconds(30)
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
### Join images into a video:
|
### Join images into a video:
|
||||||
```csharp
|
```csharp
|
||||||
FFMpeg.JoinImageSequence(@"..\joined_video.mp4", frameRate: 1,
|
FFMpeg.JoinImageSequence(@"..\joined_video.mp4", frameRate: 1,
|
||||||
|
|
Loading…
Reference in a new issue