Skip to content

Commit c6437b0

Browse files
committed
Updating readmes and nuspec before NuGet release. Final commit of version 2.8
1 parent 2fe47bc commit c6437b0

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Current NuGet Release Status
1515
- If you would like to support this project, you can show your appreciation via [PayPal.Me](https://www.paypal.me/mariodivece/50usd)
16-
- Current Status: (2018-09-23) - Release 4.0.270 is now available, (see the <a href="https://github.com/unosquare/ffmediaelement/releases">Releases</a>)
16+
- Current Status: (2019-03-16) - Release 4.0.280 is now available, (see the <a href="https://github.com/unosquare/ffmediaelement/releases">Releases</a>)
1717
- NuGet Package available here: https://www.nuget.org/packages/FFME.Windows/
1818
- FFmpeg Version: <a href="https://ffmpeg.zeranoe.com/builds/win32/shared/ffmpeg-4.0.2-win32-shared.zip">4.1 (32-bit)</a>
1919

@@ -22,7 +22,7 @@
2222
## Quick Usage Guide for WPF Apps
2323

2424
Here is a quick guide on how to get started.
25-
1. Open Visual Studio (v2017 recommended), and create a new WPF Application. Target Framework must be 4.6.1 or above.
25+
1. Open Visual Studio (v2017 or v2019 recommended), and create a new WPF Application. Target Framework must be 4.6.1 or above.
2626
2. Install the NuGet Package from your Package Manager Console: `PM> Install-Package FFME.Windows`
2727
3. You need FFmpeg shared binaries (64 or 32 bit, depending on your app's target architecture). Build your own or download a compatible build from [Zeranoe FFmpeg Builds site](https://ffmpeg.zeranoe.com/builds/).
2828
4. Your FFmpeg build should have a `bin` folder with 3 exe files and some dll files. Copy all those files to a folder such as `c:\ffmpeg`

Support/ffme.win.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
<projectUrl>https://github.com/unosquare/ffmediaelement</projectUrl>
1111
<iconUrl>https://raw.githubusercontent.com/unosquare/ffmediaelement/master/Support/ffme.png</iconUrl>
1212
<requireLicenseAcceptance>true</requireLicenseAcceptance>
13-
<description>FFME is a close (and I'd like to think better) drop-in replacement for Microsoft's WPF MediaElement Control. While the standard MediaElement uses DirectX (DirectShow) for media playback, FFME uses FFmpeg to read and decode audio and video. This means that for those of you who want to support stuff like HLS playback, or just don't want to go through the hassle of installing codecs on client machines, using FFME might just be the answer.</description>
13+
<description>FFME is an advanced media control and a close drop-in replacement for Microsoft's WPF MediaElement Control. While the standard MediaElement uses DirectX (DirectShow) for media playback, FFME uses FFmpeg to read and decode audio and video. This means that for those of you who want to support stuff like HLS playback, or just don't want to go through the hassle of installing codecs on client machines, using FFME might just be the answer.</description>
1414
<summary>FFmpeg MediaElement Control (FFME)</summary>
1515
<releaseNotes>
1616
This is a release package of the Michelob build referencing bindings to FFmpeg version 4.1
1717
This package does not contain the required FFmpeg binaries. Please refer to the following URL for instructions on how to obtain the binaries: https://github.com/unosquare/ffmediaelement
18-
Release details: https://github.com/unosquare/ffmediaelement/milestone/9?closed=1
18+
Release details: https://github.com/unosquare/ffmediaelement/milestone/10?closed=1
1919
</releaseNotes>
2020
<copyright>Copyright © 2015-2019 Mario Di Vece, Unosquare SA de CV</copyright>
2121
<language>en-US</language>

Support/readme.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
How to use FFME
2-
In order to use the FFME MediaElement control, you will need to setup a folder with FFmpeg binaries. Here are the steps:
32

4-
1. You can build your own FFmpeg or download a compatible build from the wonderful Zeranoe FFmpeg Builds site: (https://ffmpeg.zeranoe.com/builds/win32/shared/ffmpeg-4.1-win32-shared.zip).
5-
2. Your FFmpeg build (see the bin folder) should have 3 exe files and a number of dll files. Copy all of them to a folder such as (c:\ffmpeg)
3+
In order to use the FFME MediaElement control, you will need to setup a folder with FFmpeg binaries and point to it from your application code.
4+
Here are the steps:
5+
6+
1. You can build your own FFmpeg shared binaries or download a compatible build from the wonderful Zeranoe FFmpeg Builds site: (https://ffmpeg.zeranoe.com/builds/win32/shared/ffmpeg-4.1-win32-shared.zip).
7+
2. Your FFmpeg build (see the bin folder) should have 3 exe files and a number of dll files and must match your app's architecture (32-bit or 64-bit). Copy all of them to a folder such as (c:\ffmpeg)
68
3. Within you application's startup code (Main method), set Unosquare.FFME.MediaElement.FFmpegDirectory = @"path to ffmpeg binaries from the previous step";.
79
4. Use the FFME MediaElement control as any other WPF control!
810
For example: In your MainForm.xaml, add the namespace: xmlns:ffme="clr-namespace:Unosquare.FFME;assembly=ffme.win"

0 commit comments

Comments
 (0)