We use cookies to improve your experience. No personal information is gathered and we don't serve ads. Cookies Policy.

ExpressionEngine Logo ExpressionEngine
Features Pricing Support Find A Developer
Partners Upgrades
Blog Add-Ons Learn
Docs Forums University
Log In or Sign Up
Log In Sign Up
ExpressionEngine Logo
Features Pro new Support Find A Developer
Partners Upgrades
Blog Add-Ons Learn
Docs Forums University Blog
  • Home
  • Forums

Using FF Matrix with streaming video

Development and Programming

blaiseymae's avatar
blaiseymae
108 posts
16 years ago
blaiseymae's avatar blaiseymae

OK…So I’m loving the FieldFrame Extension, but having a little trouble pathing my streaming video.

I have been able to get it to work when using downloadable video using the following code:


  <trackList>
{exp:weblog:entries weblog="media_gallery" limit="1" disable="trackbacks|categories|pagination|category_fields|member_data"}
    {media_videos}
    <track>
      <title>{cell_1}</title>
      <annotation>{cell_2}</annotation>
      <location>http://media.lpb.org/{cell_3}_iPod.mp4</location>
      <image>http://img.youtube.com/vi/{cell_3}/0.jpg</image>
    </track>
    {/media_videos}
    {/exp:weblog:entries} </trackList>
</playlist>

What I would like to do is to get my streaming video to play. We have 2 types of video, high-quality streaming video and lower-quality podcast video. We generally export each video to 2 locations: one can be downloaded and saved (iPod) and one streams on our website (higher quality). Below is the playlist code we have been using with the longtail player, with the rtmp stream path.


<title>XSPF playlist with different streamers for the JW Player</title>
<info>http://developer.longtailvideo.com/trac</info>
<tracklist>

{exp:weblog:entries weblog="capitol_beat"}
<track>    
<title>{title}</title>
<creator>Louisiana Public Broadcasting</creator>
<info>http://www.lpb.org/</info>
<annotation>Capitol Beat</annotation>
<jwplayer:file>programs/{capitol_video}_web.mp4</jwplayer:file>
<jwplayer:streamer>rtmp://media.lpb.org/vod</jwplayer:streamer>
</track>
{/exp:weblog:entries}
    
</tracklist>
</playlist>

How do I path it when using the FF Matrix playlist code? I have already tried just replacing location and image with the jwplayer lines, but that didn’t work.

Thanks!

       
blaiseymae's avatar
blaiseymae
108 posts
16 years ago
blaiseymae's avatar blaiseymae

Just wondering if anyone can help with this…

I have been able to get this to work with downloadable video, but not with streaming.


  <trackList>
{exp:weblog:entries weblog="media_gallery" limit="1" disable="trackbacks|categories|pagination|category_fields|member_data"}
    {media_videos}
    <track>
      <title>{cell_1}</title>
      <annotation>{cell_2}</annotation>
      <location>http://media.lpb.org/{cell_3}_iPod.mp4</location>
      <image>http://img.youtube.com/vi/{cell_3}/0.jpg</image>
    </track>
    {/media_videos}
    {/exp:weblog:entries} </trackList>
</playlist>
       
blaiseymae's avatar
blaiseymae
108 posts
16 years ago
blaiseymae's avatar blaiseymae

GOT IT!!!

Just in case someone else has the same problem….

Here’s the code that works for streaming:


<trackList>
{exp:weblog:entries weblog="media_gallery" limit="1" disable="trackbacks|categories|pagination|category_fields|member_data"}
{media_videos}
<track>
<title>{cell_1}</title>
<annotation>{cell_2}</annotation>
<image></image>
<location>programs/{cell_3}_web.mp4</location>
<meta rel='streamer'>rtmp://media.lpb.org/vod</meta>
<meta rel="type">rtmp</meta>
</track>
{/media_videos}
{/exp:weblog:entries}
</trackList>
</playlist>

It was the <meta rel=’streamer’>rtmp path</meta> and <meta rel=”type”>rtmp</meta> that did the trick!

       

Reply

Sign In To Reply

ExpressionEngine Home Features Pro Contact Version Support
Learn Docs University Forums
Resources Support Add-Ons Partners Blog
Privacy Terms Trademark Use License

Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.