11
Using HTTP Live Streaming twitter:@vonbo 29/02/2012 1 12年2月29日星期三

Http Live Streaming Intro

  • Upload
    vonbo

  • View
    4.384

  • Download
    4

Embed Size (px)

DESCRIPTION

a super simple sample of using http live streaming

Citation preview

Page 1: Http Live Streaming Intro

Using HTTP Live Streaming

twitter:@vonbo29/02/2012

112年2月29日星期三

Page 2: Http Live Streaming Intro

Intro

Streaming audio or video to iPhone, iPod touch, iPad, or Apple TV

Streaming live events without special server software

Sending video on demand with encryption and authentication

212年2月29日星期三

Page 3: Http Live Streaming Intro

Intro

312年2月29日星期三

Page 4: Http Live Streaming Intro

Step By Step

Download segment tools from apple (https://developer.apple.com/downloads/index.action search “HTTP Live Streaming Tools”)

Segment original file into several pieces (.ts file) every 5 ~ 10 seconds

Generate a manifest file (.m3u8 file) which includes all the ts file name

412年2月29日星期三

Page 5: Http Live Streaming Intro

Sample - Step 1 - Segment$ cd /User/fengbo/project/testhsl/bgrs

$ ls

rwarren.mp4

$ mediafilesegmenter rwarren.mp4

Feb 29 2012 11:22:36.949: Using floating point is not backward compatible to iOS 4.1 or earlier devices

Feb 29 2012 11:22:36.950: Processing file /Users/fengbo/project/testhsl/bgrs/rwarren.mp4

Feb 29 2012 11:22:37.577: Finalized fileSequence0.ts

Feb 29 2012 11:22:37.577: segment bitrate 1.30908e+06 is new max

Feb 29 2012 11:22:37.587: Finalized fileSequence1.ts

Feb 29 2012 11:22:37.600: Finalized fileSequence2.ts

Feb 29 2012 11:22:37.618: Finalized fileSequence3.ts

....

Use the mediafilesegmenter command

512年2月29日星期三

Page 6: Http Live Streaming Intro

Sample - Step 1 - Segment

$ ls

fileSequence0.ts fileSequence115.ts fileSequence19.ts fileSequence36.ts fileSequence53.ts fileSequence70.ts fileSequence88.ts ... prog_index.m3u8

The manifest file

612年2月29日星期三

Page 7: Http Live Streaming Intro

Sample - Step 1 - Segment

prog_index.m3u8

712年2月29日星期三

Page 8: Http Live Streaming Intro

Sample - Step 2 - Deploy

Config Apache

812年2月29日星期三

Page 9: Http Live Streaming Intro

Sample - Step 2 - Deploy

Write HTML page

cd /User/fengbo/project/testhsl

vim index.html

912年2月29日星期三

Page 10: Http Live Streaming Intro

Sample - Step 2 - ViewOpen in Safari (Current can not work in Google Chrome)

It works !!!1012年2月29日星期三

Page 11: Http Live Streaming Intro

End

For more, visit :

https://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008332-CH1-DontLinkElementID_39

1112年2月29日星期三