博碩士論文 975202059 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:14 、訪客IP:18.223.159.195
姓名 張維韓(Wei-Han Chang)  查詢紙本館藏   畢業系所 資訊工程學系
論文名稱 於數位機上盒實現有效率訊框參照處理與多媒體詮釋資料感知的播放器設計
(Effectively Frame Reference Processing and Multimedia Metadata Aware Media Player Design for Digital Set-top Box)
相關論文
★ 具多重樹狀結構之可靠性群播傳輸★ 在嵌入式行動裝置上設計與開發跨平台Widget
★ 在 ARM 架構之嵌入式系統上實作輕量化的手持多媒體播放裝置圖形使用者介面函式庫★ 基於網路行動裝置所設計可擴展的服務品質感知GStreamer模組
★ 針對行動網路裝置開發可擴展且跨平台之GSM/HSDPA引擎★ 於單晶片多媒體裝置進行有效率之多格式解碼管理
★ IMS客戶端設計與即時通訊模組研發:個人資訊交換模組與即時訊息模組實作★ 在可攜式多媒體裝置上實作人性化的嵌入式小螢幕網頁瀏覽器
★ 以IMS為基礎之及時語音影像通話引擎的實作:使用開放原始碼程式庫★ 電子書嵌入式開發: 客制化下載服務實作, 資料儲存管理設計
★ 具數位安全性的電子書開發:有效率的更新模組與資料庫實作★ 適用於異質無線寬頻系統的新世代IMS客戶端軟體研發
★ 在可攜式數位機上盒上設計並實作重配置的圖形使用者介面★ Friendly GUI design and possibility support for E-book Reader based Android client
★ Effective GUI Design and Memory Usage Management for Android-based Services★ Content Reading Management for E-Book Reader Based Android Client
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   至系統瀏覽論文 ( 永不開放)
摘要(中) 今日由於科技的快速發展,硬體的運算能力與軟體的易開發性都大幅提昇。過去只能在電腦上觀賞的多媒體檔案,現在可以在各式各樣的嵌入式系統上播放。網際網路的盛行,意味著可以從網路上取得或是分享資訊。使用者希望能得到更好的使用體驗,與更多的加值服務。
目前眾多的嵌入式系統都會搭載視訊硬體解碼晶片,確保播放多媒體檔案時能夠得到最佳的播放效果。硬體解碼的關鍵就在訊框參照處理,讓訊框可以被正確的解碼與顯示。另一方面關於多媒體詮釋資料的應用上,使用者可以透過網路取得與影片相關的資訊或是字幕檔。
在本論文中,使用了兩個平台上的媒體播放器做為試驗。其中之一是在Linux平台上實現有效率的訊框參照處理。另外一個是在Android平台上的導入多媒體詮釋資料感知的加值服務。
摘要(英) Due to the technology fast growing, the hardware capability and software development convenience also become increasingly. Watching and sharing multimedia files on computer is common idea before, now the embedded system is more powerful so these files can be played on it. The Internet is very popular, means that the more information can be retrieved and shared to the Internet. User expects more good experience, and more value service.
Most of the embedded systems carry video hardware decoding SoC. It makes sure that the best enjoyment experience with the media playing. The frame reference is very important for the decoder. Correct frame reference setting implies the hardware decode SoC can decode correctly. On the other hand, user can get movie information and subtitles with multimedia metadata aware application through the Internet.
In this thesis, there are two different platform and media player respectively. One will implement frame reference processing on Linux platform. The other one will add multimedia metadata aware value service on Android platform.
關鍵字(中) ★ 機上盒
★ 多媒體詮釋資料
★ 播放器
★ 訊框參照
關鍵字(英) ★ Multimedia Metadata
★ Media Player
★ Set-top Box
★ Frame Reference
論文目次 Abstract ii
Acknowledgments iv
Table of Contents v
List of Figures viii
1 Introduction 1
1.1 Motivation . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2 Challenge . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.3 Organization . . . . . . . . . . . . . . . . . . . . . . . 4
2 Background and Related Works 5
2.1 Development Platform . . . . . . . . . . . . . . . . . . 5
2.1.1 Linux . . . . . . . . . . . . . . . . . . . . . . . 5
2.1.2 Android . . . . . . . . . . . . . . . . . . . . . . 6
2.2 Multimedia Framework . . . . . . . . . . . . . . . . . . 7
2.2.1 GStreamer . . . . . . . . . . . . . . . . . . . . . 7
2.2.2 MPlayer . . . . . . . . . . . . . . . . . . . . . . 8
2.2.3 OpenCORE . . . . . . . . . . . . . . . . . . . . 9
2.3 The Development Board and Selected Solution . . . . . 10
3 System Architecture 13
3.1 System Goal . . . . . . . . . . . . . . . . . . . . . . . . 13
3.2 System Overview . . . . . . . . . . . . . . . . . . . . . 15
3.3 System Architecture of nt98700 Series . . . . . . . . . . 16
3.3.1 GUI Library Architecture . . . . . . . . . . . . 16
3.3.2 GStreamer Architecture . . . . . . . . . . . . . 19
3.4 System Architecture of tcc8900 Series . . . . . . . . . . 21
3.4.1 GUI Library Architecture . . . . . . . . . . . . 21
3.4.2 Android Multimedia Framework . . . . . . . . . 23
4 Implementation 25
4.1 Frame Reference Processing . . . . . . . . . . . . . . . 25
4.1.1 Frame Reference Rules . . . . . . . . . . . . . . 26
4.1.2 Frame Reference Rules for Seek Function . . . . 30
4.1.3 Frame Dropping . . . . . . . . . . . . . . . . . . 31
4.2 Multimedia Metadata . . . . . . . . . . . . . . . . . . . 33
4.2.1 IMDb API . . . . . . . . . . . . . . . . . . . . . 33
4.2.2 OSDb API . . . . . . . . . . . . . . . . . . . . . 34
4.2.3 SRT Parser . . . . . . . . . . . . . . . . . . . . 36
4.3 Subtitle Display on Android . . . . . . . . . . . . . . . 38
5 Conclusion and Future Works 40
List of References 42
參考文獻 [1] The Linux Kernel Archives
http://www.kernel.org.
[2] OpenEmbedded
http://www.openembedded.org/.
[3] Google Projects for Android
http://code.google.com/android/.
[4] GStreamer
http://www.gstreamer.net.
[5] MPlayer - The Movie Player
http://www.mplayerhq.hu/.
[6] PacketVideo CORE
http://www.packetvideo.com/products/core/.
[7] Khronos OpenMAX
http://www.khronos.org/openmax/.
[8] Y. lun Ting, The design and development of recon gurable
graphic user interface for portable set-top box," Master's the-
sis, Department of Computer Science and Engineering, National
Central University, 2010.
[9] R.-C. Qiu, An expandable qos aware gstreamer module plug-in
design for portable internet device," Master's thesis, Department
of Computer Science and Engineering, National Central Univer-
sity, 2009.
G.-R. Peng, E ective multi-format decode processing manage-
ment development for soc mobile multimedia devices," Master's
thesis, Department of Computer Science and Engineering, Na-
tional Central University, 2009.
[11] Audio and Video in Android
http://developer.android.com/guide/topics/media/index.html.
[12] Android MediaPlayer Architechture Introduce
http://www.eoeandroid.com/thread-33-1-1.html.
[13] The Internet Movie Database (IMDb)
http://www.imdb.com/.
[14] OpenSubtitles.org
http://www.opensubtitles.org/.
[15] SRT Subtitles
http://www.matroska.org/technical/specs/subtitles/srt.html.
指導教授 吳曉光(Hsiao-kuang Wu) 審核日期 2010-7-12
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明