Closed (fixed)
Project:
Video
Version:
7.x-2.4
Component:
Video Players
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Nov 2011 at 17:02 UTC
Updated:
24 Feb 2012 at 22:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
hypertext200What are the player configurations you have? What are the presets configurations you have?
Comment #2
Countzero commentedIn fact, I had no preset defined. Is it required ?
I don't want any conversion stuff (yet), so I thought it was not mandatory.
While creating one, I noticed the message comes from the config pages, not the node's.
On the node's page, a grey rectangle is displayed, and a click on it triggers the throbber, but nothing happens afterwards. It just spins forever.
I attached a screenshot of the preset's properties.
Maybe I'm just deeply misunderstanding the module's philosophy, and I'm sorry if it's the case.
Comment #3
hypertext200If you do not want to convert videos then its easy to configure the video field. What are the video fields settings you have? Please provide a screenshot.
Comment #4
Countzero commentedI'm not too sure what page settings you want.
Here are the 'Manage Fields' tab and the 'Manage Display' tab
Comment #5
hypertext200I need video field settings
Comment #6
Countzero commentedHere thay are.
Comment #7
Saoirse1916 commentedIn the file /sites/all/modules/video/theme/video-play-html5.tpl.php, change line 15 from this:
<video width="<?php echo $video->player_width; ?>" autobuffer="<?php print $video->autobuffering; ?>" height="<?php echo $video->player_height; ?>" controls="controls" preload="<?php print $video->autobuffering ? 'auto' : 'metadata'; ?>" poster="<?php echo $video->thumbnail->url; ?>">to this:
<video width="<?php echo $video->player_width; ?>" autobuffer="<?php print $video->autobuffering; ?>" height="<?php echo $video->player_height; ?>" controls="controls" preload="<?php print $video->autobuffering ? 'auto' : 'metadata'; ?>">The problem is the call for
poster="<?php echo $video->thumbnail->url; ?>-- at least in my case, $video->thumbnail is null and so $video->thumbnail->url does not exist, hence this error.Comment #8
dealancer commented@Saoirse1916, right, this is cause of $video->thumbnail object is null.
Here is a patch.
Comment #9
Jorrit commentedCommitted to branch 7.x-2.x.