All Projects → lxrite → Dawnplayer

lxrite / Dawnplayer

Licence: mit
A FLV playback library for Windows 10 UWP.

Projects that are alternatives of or similar to Dawnplayer

Uwp App Launcher Mobile
[Open Source] It's like the iOS and Android Home Screens but for Windows 10 (Phones).
Stars: ✭ 47 (+2.17%)
Mutual labels:  windows-10, windows-phone, uwp
Breadplayer
Bread Player, a free and open source music player powered by UWP and C#/.NET with a sleek and polished design built for, and by, the people seeking a better alternative to Groove and Windows Media Player by Microsoft.
Stars: ✭ 267 (+480.43%)
Mutual labels:  windows-10, windows-phone, uwp
Signal Windows
Unofficial Signal Private Messenger for Windows
Stars: ✭ 83 (+80.43%)
Mutual labels:  windows-10, windows-phone, uwp
Caliburn.micro
A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to sacrifice code quality or testability.
Stars: ✭ 2,404 (+5126.09%)
Mutual labels:  windows-10, windows-phone, uwp
Avbuild
ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc.
Stars: ✭ 285 (+519.57%)
Mutual labels:  windows-phone, uwp
Mingw Windows10 Uwp
Minimal Windows 10 Store ready sample of MinGW dll PInvoked from Windows 10 UWP application
Stars: ✭ 21 (-54.35%)
Mutual labels:  windows-10, uwp
Gank.uwp
http://gank.io 第三方客户端UWP版
Stars: ✭ 41 (-10.87%)
Mutual labels:  windows-10, uwp
Metrica Sample Dotnet
Yandex AppMetrica SDK Sample for Windows
Stars: ✭ 11 (-76.09%)
Mutual labels:  windows-phone, uwp
Lottie Windows
Lottie-Windows is a library (and related tools) for rendering Lottie animations on Windows 10.
Stars: ✭ 322 (+600%)
Mutual labels:  windows-10, uwp
Microsoft Ui Xaml
Windows UI Library: the latest Windows 10 native controls and Fluent styles for your applications
Stars: ✭ 4,428 (+9526.09%)
Mutual labels:  windows-10, uwp
Calculator
Windows Calculator: A simple yet powerful calculator that ships with Windows
Stars: ✭ 23,274 (+50495.65%)
Mutual labels:  windows-10, uwp
Awesome Uwp
Awesome UWP libs
Stars: ✭ 279 (+506.52%)
Mutual labels:  windows-phone, uwp
Lottieuwp
UWP port of Lottie(https://github.com/airbnb/lottie-android)
Stars: ✭ 276 (+500%)
Mutual labels:  windows-10, uwp
Q42.hueapi
C# helper library to talk to the Philips Hue bridge
Stars: ✭ 323 (+602.17%)
Mutual labels:  windows-phone, uwp
Sylphyhorn
Virtual Desktop Tools for Windows 10.
Stars: ✭ 271 (+489.13%)
Mutual labels:  windows-10, uwp
Xamlflair
XamlFlair is an animation library for UWP, WPF, and Uno, built to facilitate Xaml animations using only attached properties.
Stars: ✭ 362 (+686.96%)
Mutual labels:  windows-10, uwp
Fluent Xaml Theme Editor
The Fluent Design XAML theme editor.
Stars: ✭ 437 (+850%)
Mutual labels:  windows-10, uwp
Win10bloatremover
Configurable CLI tool to easily and aggressively debloat and tweak Windows 10 by removing preinstalled UWP apps, services and more. Originally based on the W10 de-botnet guide made by @adolfintel.
Stars: ✭ 37 (-19.57%)
Mutual labels:  windows-10, uwp
Rott94
Rise of the Triad source port to SDL2, Android and WinRT
Stars: ✭ 8 (-82.61%)
Mutual labels:  windows-10, windows-phone
DevToys
A Swiss Army knife for developers.
Stars: ✭ 4,986 (+10739.13%)
Mutual labels:  uwp, windows-10

DawnPlayer

A FLV playback library for Windows 10 UWP.

Features

  • No third-party dependencies
  • HTTP FLV (live) stream and local file playback

Requirements

  • Microsoft Visual Studio 2015

Usage

XAML

<MediaElement x:Name="mediaElement" AutoPlay="True"/>

C#

// Local file playback
StorageFile file = ...;
fileStream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);
flvMediaStreamSource = await FlvMediaStreamSource.CreateFromRandomAccessStreamAsync(fileStream);
mediaElement.SetMediaStreamSource(flvMediaStreamSource.Source);

// HTTP FLV playback
Uri uri = ...;
var httpClient = new HttpClient();
httpStream = await httpClient.GetInputStreamAsync(uri);
flvMediaStreamSource = await FlvMediaStreamSource.CreateFromInputStreamAsync(httpStream);
mediaElement.SetMediaStreamSource(flvMediaStreamSource.Source);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].