Artwork

コンテンツは Planet Xamarin によって提供されます。エピソード、グラフィック、ポッドキャストの説明を含むすべてのポッドキャスト コンテンツは、Planet Xamarin またはそのポッドキャスト プラットフォーム パートナーによって直接アップロードされ、提供されます。誰かがあなたの著作権で保護された作品をあなたの許可なく使用していると思われる場合は、ここで概説されているプロセスに従うことができますhttps://ja.player.fm/legal
Player FM -ポッドキャストアプリ
Player FMアプリでオフラインにしPlayer FMう!

Xamarin Forms native WebTV

 
シェア
 

アーカイブされたシリーズ ("無効なフィード" status)

When? This feed was archived on August 02, 2022 07:12 (1+ y ago). Last successful fetch was on September 01, 2020 19:18 (3+ y ago)

Why? 無効なフィード status. サーバーは持続期間に有効なポッドキャストのフィードを取得することができませんでした。

What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.

Manage episode 270666952 series 2314783
コンテンツは Planet Xamarin によって提供されます。エピソード、グラフィック、ポッドキャストの説明を含むすべてのポッドキャスト コンテンツは、Planet Xamarin またはそのポッドキャスト プラットフォーム パートナーによって直接アップロードされ、提供されます。誰かがあなたの著作権で保護された作品をあなたの許可なく使用していると思われる場合は、ここで概説されているプロセスに従うことができますhttps://ja.player.fm/legal
Live video broadcasting on Xamarin Forms

Hi Everyone in this blog we will integrate live broad cast tv inside Xamarin forms application.
You can watch the video for full configuration ◈ : https://youtu.be/YV8jPEl6eB0

At first we are going to get API Key and API Code from streamvideoproviders. -> www.streamingvideoprovider.com

Step 1 : This is the dashboard that you will be provided when you login with your social login or manual signup.

Step 2 : Click on Web TV -> Click on AddMedia.

Step3 : Select WebTV -> Give WebTV Details and Click on Create.

Additional Note : Web TV plays your playlist videos live 24×7. You can also select live stream and use OBS studio (mac) and play a live stream video directly to Xamarin Forms App.

Step 4: It’s time to get API credentials from streamingvideoprovider. Click on Settings> You will find API key and API Code on Right side. Don’t forget to click on save.

That’s all with streamingvideoprovider. We will be using API key and Code inside our Xamarin forms apps.

Xamarin Forms Blank APP video player integration ◈

Plugins to be installed on all projects: Plugin.MediaManager.Forms
1. https://github.com/Baseflow/XamarinMediaManager
Current Version to be installed : 0.9.5

Step 1 ◈ : So at first we will try to check video player working on stable condition or not for both android and iOS.

1. On Android
Call from MainActivity: CrossMediaManager.Current.Init(this);
2.On Other platforms
Call from AppDelegate, etc: CrossMediaManager.Current.Init();
3. Add this line of code on Xamarin Forms APP on any pages of XF.
[ ]
This VideoView inherits from namespace :
xmlns:mm=”clr-namespace:MediaManager.Forms;assembly=MediaManager.Forms”

Note : If you are using http request on the Xamarin forms app. Then you have to enable App Transport Security on iOS and Http clear text on Android.
iOS : https://docs.microsoft.com/en-us/xamarin/ios/app-fundamentals/ats
Android : https://www.youtube.com/watch?v=wYd9x8elNQ8
That’s all
Then you can run your 1st video on the Xamarin Forms Project for both android and iOS:

Playing normal video on Android

Step 2 ◈ : Now it’s time to integrate the Platform independent code inside our XF .net shared project.

MainPage.xaml : You can provide height to video and optimise the screen as per your expectations.

MainPage.xaml.cs :

Step 3 ◈: Create folder-> Name it as Models.
This folder will contain classes which are required for parsing the xml response from API.

  1. ApiVideoResponse.cs

2. CommonVideoFetchResponse.cs :

3. Response.cs

That’s all final output :

Github Source Code : https://github.com/samirgcofficial/XFLiveWebTV/tree/master

747 total views, 116 views today

  continue reading

32 つのエピソード

Artwork
iconシェア
 

アーカイブされたシリーズ ("無効なフィード" status)

When? This feed was archived on August 02, 2022 07:12 (1+ y ago). Last successful fetch was on September 01, 2020 19:18 (3+ y ago)

Why? 無効なフィード status. サーバーは持続期間に有効なポッドキャストのフィードを取得することができませんでした。

What now? You might be able to find a more up-to-date version using the search function. This series will no longer be checked for updates. If you believe this to be in error, please check if the publisher's feed link below is valid and contact support to request the feed be restored or if you have any other concerns about this.

Manage episode 270666952 series 2314783
コンテンツは Planet Xamarin によって提供されます。エピソード、グラフィック、ポッドキャストの説明を含むすべてのポッドキャスト コンテンツは、Planet Xamarin またはそのポッドキャスト プラットフォーム パートナーによって直接アップロードされ、提供されます。誰かがあなたの著作権で保護された作品をあなたの許可なく使用していると思われる場合は、ここで概説されているプロセスに従うことができますhttps://ja.player.fm/legal
Live video broadcasting on Xamarin Forms

Hi Everyone in this blog we will integrate live broad cast tv inside Xamarin forms application.
You can watch the video for full configuration ◈ : https://youtu.be/YV8jPEl6eB0

At first we are going to get API Key and API Code from streamvideoproviders. -> www.streamingvideoprovider.com

Step 1 : This is the dashboard that you will be provided when you login with your social login or manual signup.

Step 2 : Click on Web TV -> Click on AddMedia.

Step3 : Select WebTV -> Give WebTV Details and Click on Create.

Additional Note : Web TV plays your playlist videos live 24×7. You can also select live stream and use OBS studio (mac) and play a live stream video directly to Xamarin Forms App.

Step 4: It’s time to get API credentials from streamingvideoprovider. Click on Settings> You will find API key and API Code on Right side. Don’t forget to click on save.

That’s all with streamingvideoprovider. We will be using API key and Code inside our Xamarin forms apps.

Xamarin Forms Blank APP video player integration ◈

Plugins to be installed on all projects: Plugin.MediaManager.Forms
1. https://github.com/Baseflow/XamarinMediaManager
Current Version to be installed : 0.9.5

Step 1 ◈ : So at first we will try to check video player working on stable condition or not for both android and iOS.

1. On Android
Call from MainActivity: CrossMediaManager.Current.Init(this);
2.On Other platforms
Call from AppDelegate, etc: CrossMediaManager.Current.Init();
3. Add this line of code on Xamarin Forms APP on any pages of XF.
[ ]
This VideoView inherits from namespace :
xmlns:mm=”clr-namespace:MediaManager.Forms;assembly=MediaManager.Forms”

Note : If you are using http request on the Xamarin forms app. Then you have to enable App Transport Security on iOS and Http clear text on Android.
iOS : https://docs.microsoft.com/en-us/xamarin/ios/app-fundamentals/ats
Android : https://www.youtube.com/watch?v=wYd9x8elNQ8
That’s all
Then you can run your 1st video on the Xamarin Forms Project for both android and iOS:

Playing normal video on Android

Step 2 ◈ : Now it’s time to integrate the Platform independent code inside our XF .net shared project.

MainPage.xaml : You can provide height to video and optimise the screen as per your expectations.

MainPage.xaml.cs :

Step 3 ◈: Create folder-> Name it as Models.
This folder will contain classes which are required for parsing the xml response from API.

  1. ApiVideoResponse.cs

2. CommonVideoFetchResponse.cs :

3. Response.cs

That’s all final output :

Github Source Code : https://github.com/samirgcofficial/XFLiveWebTV/tree/master

747 total views, 116 views today

  continue reading

32 つのエピソード

すべてのエピソード

×
 
Loading …

プレーヤーFMへようこそ!

Player FMは今からすぐに楽しめるために高品質のポッドキャストをウェブでスキャンしています。 これは最高のポッドキャストアプリで、Android、iPhone、そしてWebで動作します。 全ての端末で購読を同期するためにサインアップしてください。

 

クイックリファレンスガイド