mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Merge branch 'master' of https://github.com/rosenbjerg/FFMpegCore
This commit is contained in:
commit
31ee7920a9
1 changed files with 16 additions and 17 deletions
21
README.md
21
README.md
|
@ -34,20 +34,20 @@ Easily build your FFMpeg arguments using the fluent argument builder:
|
||||||
Convert input file to h264/aac scaled to 720p w/ faststart, for web playback
|
Convert input file to h264/aac scaled to 720p w/ faststart, for web playback
|
||||||
```csharp
|
```csharp
|
||||||
FFMpegArguments
|
FFMpegArguments
|
||||||
.FromInputFiles(inputFilePath)
|
.FromFileInput(inputPath)
|
||||||
|
.OutputToFile(outputPath, false, options => options
|
||||||
.WithVideoCodec(VideoCodec.LibX264)
|
.WithVideoCodec(VideoCodec.LibX264)
|
||||||
.WithConstantRateFactor(21)
|
.WithConstantRateFactor(21)
|
||||||
.WithAudioCodec(AudioCodec.Aac)
|
.WithAudioCodec(AudioCodec.Aac)
|
||||||
.WithVariableBitrate(4)
|
.WithVariableBitrate(4)
|
||||||
.WithFastStart()
|
.WithFastStart()
|
||||||
.Scale(VideoSize.Hd)
|
.Scale(VideoSize.Hd))
|
||||||
.OutputToFile(output)
|
.ProcessSynchronously();
|
||||||
.ProcessSynchronously(),
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Easily capture screens from your videos:
|
Easily capture screens from your videos:
|
||||||
```csharp
|
```csharp
|
||||||
var mediaFileAnalysis = FFProbe.Analyse(inputFilePath);
|
var mediaFileAnalysis = FFProbe.Analyse(inputPath);
|
||||||
|
|
||||||
// process the snapshot in-memory and use the Bitmap directly
|
// process the snapshot in-memory and use the Bitmap directly
|
||||||
var bitmap = FFMpeg.Snapshot(mediaFileAnalysis, new Size(200, 400), TimeSpan.FromMinutes(1));
|
var bitmap = FFMpeg.Snapshot(mediaFileAnalysis, new Size(200, 400), TimeSpan.FromMinutes(1));
|
||||||
|
@ -59,10 +59,10 @@ FFMpeg.Snapshot(mediaFileAnalysis, outputPath, new Size(200, 400), TimeSpan.From
|
||||||
Convert to and/or from streams
|
Convert to and/or from streams
|
||||||
```csharp
|
```csharp
|
||||||
await FFMpegArguments
|
await FFMpegArguments
|
||||||
.FromPipe(new StreamPipeDataWriter(inputStream))
|
.FromPipeInput(new StreamPipeSource(inputStream))
|
||||||
|
.OutputToPipe(new StreamPipeSink(outputStream), options => options
|
||||||
.WithVideoCodec("vp9")
|
.WithVideoCodec("vp9")
|
||||||
.ForceFormat("webm")
|
.ForceFormat("webm"))
|
||||||
.OutputToPipe(new StreamPipeDataReader(outputStream))
|
|
||||||
.ProcessAsynchronously();
|
.ProcessAsynchronously();
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -133,9 +133,8 @@ var videoFramesSource = new RawVideoPipeSource(CreateFrames(64)) //pass IEnumera
|
||||||
FrameRate = 30 //set source frame rate
|
FrameRate = 30 //set source frame rate
|
||||||
};
|
};
|
||||||
FFMpegArguments
|
FFMpegArguments
|
||||||
.FromPipe(videoFramesSource)
|
.FromPipeInput(videoFramesSource, <input_stream_options>)
|
||||||
// ... other encoding arguments
|
.OutputToFile("temporary.mp4", false, <output_options>)
|
||||||
.OutputToFile("temporary.mp4")
|
|
||||||
.ProcessSynchronously();
|
.ProcessSynchronously();
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue