Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Windows Store Apps > Windows Store and Media (C#) > Windows Store Apps and Youtube API (C#)



Clound SSD Virtual Server

Windows Store Apps and Youtube API (C#)

Windows Store Apps and Youtube API (C#) บทความนี้จะเป็นตัวอย่างการเขียน Windows Store Apps เพื่อเล่นไฟล์ Youtbe ในรูปแบบของ API คือการดึง Playlist จาก Youtbe มาแสดงบนหน้าจอ Apps ด้วยการแสดงรูป Thumbnail พร้อมกับชื่อ Clip จากนั้นเมื่อทำการคลิกที่ Clip นั้น ๆ ก็จะเป็นการเล่นคลิปบน MediaElement

Windows Store Apps and Youtube API (C#)

Windows Store Apps and Youtube API (C#)


ตามแนวคิดการเขียน Apps รูปแบบใหม่ Apps ที่ถูกติดตั้งลงบน Client ของ User ในกรณีที่มี Feature ใหม่ ๆ เราจะต้องส่งตัว Update ให้กับ User ทำการ Download และ Update ใหม่ซึ่งอาจจะเสียเวลาในการใช้งาน ฉะนั้นทางที่ดีการพัฒนา Apps ควรจะมี Web Server ที่ทำหน้าที่เป็นตัวกลาง คอยส่งข้อมูลต่าง ๆ ให้กับ Client ฉะนั่นจึงมั่นใจได้ว่า Apps ที่ถูกติดตั้งตาม Client ต่าง ๆ จะมีการ Update ข้อมูลจาก Server ตลอดเวลา

และวิธีที่ได้รับความนิยมและใช้งานง่ายก็คงจะไม่พ้น HTTP ใช้วิธีการการออกแบบ URL ให้ Apps เรียกใช้งาน โดยฝั่ง Web Server อาจจะเขียนด้วย PHP หรือ ASP.Net ส่วนรูปแบบการรับ-ส่งข้อมูลนั้นจะใช้ JSON เป็นตัวกลางในการส่ง

getPlaylist.php
<?php

function getYouTubeIdFromURL($url)
{
  $url_string = parse_url($url, PHP_URL_QUERY);
  parse_str($url_string, $args);
  return isset($args['v']) ? $args['v'] : false;
}

$playlist_id = "LLEPTp5WMAzjh9mOrKUwRLmQ";
$url = "http://gdata.youtube.com/feeds/api/playlists/".$playlist_id."?v=2&alt=json";
$data = json_decode(file_get_contents($url),true);

$info = $data["feed"];
$video = $info["entry"];
$nVideo = count($video);

$resultArray = array();

for($i=0;$i<$nVideo;$i++){
    $myVideo["Name"] = $video[$i]['title']['$t'];
    $myVideo["YoutubeID"] = getYouTubeIdFromURL($video[$i]['link'][0]['href']);
    $myVideo["Image"] = $video[$i]['media$group']['media$thumbnail'][1]['url'];
	array_push($resultArray,$myVideo);
}

echo json_encode($resultArray);
?>

จาก Code ของ PHP จะเป็นการเขียน PHP เพื่อดึง Playlist ของ Youtube

Windows Store Apps and Youtube API (C#)

ตัวอย่างการดึง Playlist จาก Youtube ด้วย PHP

Windows Store Apps and Youtube API (C#)

ซึ่งเราจะได้ค่าเป็น JSON กลับมา








จากนั้นเราจะใช้ MyToolkit เป็น Class สำหรับเล่นไฟล์ Youtube สามารถ Add ผ่าน NuGet Package ได้

Windows Store Apps and Youtube API (C#)

คลิกขวาที่ Reference เลือก Manage NuGet Package

Windows Store Apps and Youtube API (C#)

ค้นหา Package ที่มีชื่อว่า MyToolkit.Extended

Windows Store Apps and Youtube API (C#)

เลือก Install ลงใน Project

Windows Store Apps and Youtube API (C#)

สร้างไฟล์ ขึ้นมา 2 ไฟล์คือ MainPage.xaml (สำหรับแสดง Playlist) , PlayVideo.xaml (สำหรับเล่น Video)


MainPage.xaml เป็น Page สำหรัยแสดง Playlist

Windows Store Apps and Youtube API (C#)

ออกแบบหน้าจอดังรูป

<Page
    x:Class="WindowsStoreApps.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WindowsStoreApps"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">


    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

        <GridView x:Name="myGridView" HorizontalAlignment="Left" Margin="90,42,0,0" VerticalAlignment="Top" Width="800" Height="571" SelectionChanged="myGridView_SelectionChanged">
            <GridView.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Margin="0,0,0,17">
                        <Image Height="100" Width="100" Source="{Binding Path=ImagePath}" Margin="12,0,9,0"/>
                        <StackPanel Width="400">
                            <TextBlock Text="{Binding Name}"  TextWrapping="Wrap" FontSize="20" Margin="12,-6,12,0" />
                            <TextBlock Text="{Binding YoutubeID}" TextWrapping="Wrap" FontSize="20" Margin="12,-6,12,0"/>
                        </StackPanel>
                    </StackPanel>
                </DataTemplate>
            </GridView.ItemTemplate>
        </GridView>

    </Grid>

</Page>

MainPage.xam.csl
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.Devices.Geolocation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Core;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

using System.Net.Http;

using System.Xml.Linq;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.Collections.ObjectModel;
using System.Text;

using Windows.UI.Xaml.Media.Imaging;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238

namespace WindowsStoreApps
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    /// 

    public class YoutubeList
    {
        public string Name { get; set; }
        public string YoutubeID { get; set; }
        public string Image { get; set; }
        public BitmapImage ImagePath { get; set; }
    }

    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
        }

        protected BitmapImage getImageSource(string url)
        {
            try
            {
                BitmapImage bm = new BitmapImage(new Uri(url, UriKind.Absolute));
                return bm;
            }
            catch (Exception ex)
            {
                return null;
            }

        }

        protected async override void OnNavigatedTo(NavigationEventArgs e)
        {

            HttpClient http = new System.Net.Http.HttpClient();
            HttpResponseMessage response = await http.GetAsync("http://localhost/myweb/getPlaylist.php");
            response.EnsureSuccessStatusCode();

            string resultJSON = string.Empty;
            resultJSON = await response.Content.ReadAsStringAsync();

            MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(resultJSON));
            ObservableCollection<YoutubeList> list = new ObservableCollection<YoutubeList>();
            DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(ObservableCollection<YoutubeList>));
            list = (ObservableCollection<YoutubeList>)serializer.ReadObject(ms);

            List<YoutubeList> ls = new List<YoutubeList>();

            foreach (YoutubeList item in list)
            {
                ls.Add(new YoutubeList { Name = item.Name, YoutubeID = item.YoutubeID, Image = item.Image, ImagePath = getImageSource(item.Image) });
            }
            this.myGridView.ItemsSource = ls;  

        }

        private void myGridView_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            YoutubeList youtube = (sender as GridView).SelectedItem as YoutubeList;
            this.Frame.Navigate(typeof(PlayVideo), youtube.YoutubeID.ToString());
        }

    }
}


PlayVideo.xaml เป็น Page สำหรับแสดงเล่นไฟล์ Youtube

Windows Store Apps and Youtube API (C#)

<Page
    x:Class="WindowsStoreApps.PlayVideo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WindowsStoreApps"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <MediaElement x:Name="myMedia" HorizontalAlignment="Left" Height="416" Margin="90,91,0,0" VerticalAlignment="Top" Width="656"/>
    </Grid>
</Page>

PlayVideo.xaml.cs
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

using MyToolkit.Multimedia;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238

namespace WindowsStoreApps
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class PlayVideo : Page
    {
        public PlayVideo()
        {
            this.InitializeComponent();
        }

        string sYoutubeID = string.Empty;

        protected async override void OnNavigatedTo(NavigationEventArgs e)
        {
            sYoutubeID = e.Parameter as string;
            var url = await YouTube.GetVideoUriAsync(sYoutubeID, YouTubeQuality.Quality1080P);
            this.myMedia.Source = url.Uri;
        }

    }
}

Result

Windows Store Apps and Youtube API (C#)

แสดง Playlist จาก Youtbe

Windows Store Apps and Youtube API (C#)

เล่นไฟล์ Youtube ที่ได้จากการคลิกเลือก








.

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2014-06-29 20:53:10 / 2017-03-19 15:01:00
  Download : No files
 Sponsored Links / Related

 
Windows Store Apps and Image Capture from Camera (C#)
Rating :

 
Windows Store Apps and Video Capture from Camera (C#)
Rating :

 
Windows Store Apps and Play Media / Sound / Slider Control (C# )
Rating :

 
Windows Store Apps and Generate QR Codes (C#)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 02
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่