Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
TYPO3 4.3 Multimedia Cookbook

You're reading from   TYPO3 4.3 Multimedia Cookbook Over 50 great recipes for effectively managing multimedia content to create an organized web site in TYPO3

Arrow left icon
Product type Paperback
Published in Feb 2010
Publisher Packt
ISBN-13 9781847198488
Length 228 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Toc

Table of Contents (13) Chapters Close

TYPO3 4.3 Multimedia Cookbook
Credits
About the Author
About the Reviewers
1. Preface
1. Getting Started 2. Managing Digital Assets FREE CHAPTER 3. Operating with Metadata in Media Files 4. Rendering Images 5. Rendering Video and Audio 6. Connecting to External APIs 7. Creating Services 8. Automating Processes

Using custom media player to play video


Much like we did with audio, we will now create an extension to embed FLV player and render a custom video. You can use the same approach to embed any other custom video player to play your movies.

Note

For more information about FLV player, visit http://flvplayer.com/.

Getting ready

Make sure you have read and understood Extending the media content object for more rendering options recipe covered earlier. This recipe follows the same steps, using slightly different code. You should have created an extension skeleton in Kickstarter.

How to do it...

  1. 1. Create ext_localconf.php if it doesn't exist, and add the following content:

    <?php
    if (!defined ('TYPO3_MODE')) {
    die ('Access denied.');
    }
    // Register Hooks
    $TYPO3_CONF_VARS['SC_OPTIONS']['tslib/hooks/class.tx_cms_
    mediaitems.php']['customMediaRenderTypes'][$_EXTKEY] = 'EXT:' .
    $_EXTKEY . '/class.tx_webflvplayer.php:tx_webflvplayer';
    $TYPO3_CONF_VARS['SC_OPTIONS']['tslib/hooks/class.tx_cms_
    mediaitems.php...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image