Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

New Feature: Audio and Video


Go to End


150 Posts   38453 Views

Avatar
thrax

Community Member, 32 Posts

29 June 2009 at 2:10pm

Damn you beat me :) just came to delete the question :P

Avatar
UncleCheese

Forum Moderator, 4102 Posts

30 June 2009 at 6:31am

Avatar
lerni

Community Member, 81 Posts

3 July 2009 at 2:59am

hi there

just found a binary for people on shared hosting with no ffmpeg support. I had to "chmod +x" by moving it in the cgi-directory and set the path to it in _config.php linke this:

FLV::set_ffmpeg_root('/home/customer/public_html/cgi-bin/binary/');

http://bogdan.org.ua/tags/ffmpeg

Avatar
Digital Punk

Community Member, 51 Posts

3 July 2009 at 5:25am

Thanks a lot for the such amazing modules!

I have a few questions regarding DataObjectManager:
1. For example I would like to show second video from the files list (aka resources) on the sidebar. How can i get 1 of 20 files (aka resources)?
2. How can I change video player from FLV to QuickTime? (sure it's not enough to change player name in shadowbox_init.js ?)
3. I successfully generated video thumbnail, but how can i put video thumbnail in the player? I mean, if i genrate thumbnail - it's simply static image showing instead a video player. so, how can I use thumbnail in the player?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

3 July 2009 at 6:20am

1) I'm not sure what you mean. You want to apply different treatment to the second video?

<% if Pos = 2 %>Do something else<% else %>Do the normal thing<% end_if %> ???

2) The video features are FLV centered. If you upload Quicktime movies they will be converted to FLV.

3) The video thumbnail is only good for the VideoPopup right now. I'm not sure if the player will allow you to set a static thumbnail image on its first frame.

Avatar
Digital Punk

Community Member, 51 Posts

3 July 2009 at 9:16pm

Edited: 03/07/2009 9:16pm

Regarding 1 question - I mean here - how to get one file from the files list? for example I have uploaded 20 video files and want to display only third video file on the page sidebar. How can I get this file from the files list?

Regarding FLV player - if I would like to use another FLV player (for example ccPlayer - http://ncam.wgbh.org/webaccess/ccforflash/ccplayermain.html ).

Regarding video thumbnail - JW FLV Player have the preview image option - image (undefined): location of a preview image; shown in display and playlist. So if we can generate thumbnail, we should also have possibility to use it as preview image?

Avatar
UncleCheese

Forum Moderator, 4102 Posts

4 July 2009 at 4:29am

If you want special treatment for one video, you usually use a HasOneDataObjectManager for something like that

static $has_one = array ('SidebarVideo' => 'MyVideoObject');

$f->addFieldToTab("Root.Content.Sidebar Video", new HasOneDataObjectManager(
$this,
'SidebarVideo',
'MyVideoObject',
// headings array...
// etc..
));

The on your template

<% control SidebarVideo %>
... etc
<% end_control %>

You could also add a boolean to your video object for "show in sidebar" and then write function to just get those videos that have that checked. That would allow multiple videos if you ever wanted to do that.

You're welcome to use a different FLV player. Just extend the FLV class to your own and you can overload the Player function.

I'll look into the preview image. I don't know much about JWPlayer. I'm kind of learning as I go. :)

Avatar
Webdoc

Community Member, 349 Posts

6 July 2009 at 12:36pm

How to set the video or audio to open in new window popup not ajax??

Go to Top