In Video module video URL does n't work properly
vedantversatile - October 29, 2009 - 12:01
| Project: | Video |
| Version: | 6.x-2.x-dev |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | postponed (maintainer needs more info) |
Jump to:
Description
I have properly installed video module with all its properties working. On the same site while You Tube upload & Google Upload are working properly, Video URL has some problem. While I am creating a node using this property all is going fine I am submitting an url from vimeo / youtube.com and providing the video node a title on saving the node it is showing that the node has been created as well as giving an error "Video Type not Supported". Do an one know the reason why it is happening, if yes then do help me asap.
Thanks & Regards
Vedant

#1
You need to add urls, which ate ending in .flv or .swf
#2
#3
have the same problem after update version 6.x-2.6. please help. thanks. excuse for my bad english.
regards fugazi
#4
Currently video module support url video successfully, what is the issue you have?
#5
I'm having the same problem with the Video URL plugin. I just now found the problem while I was writing to you, so good news! The function _video_common_get_player() in common.inc has this statement
$op = ($node->vtype == "upload")? _video_get_filetype($node->vidfile) : $node->vtype;on line 17,and it should be probably be changed to
$op = ($node->vtype == "upload" || $node->vtype == "url")? _video_get_filetype($node->vidfile) : $node->vtype;Otherwise $op stays 'url' and the switch function doesn't catch. I'm fairly novice with PHP, but this fixed my issue. It might create others though, so really needs review.
#6
#7
@jwgreen1974 fix was spot on! Fixed my same exact problem.
#8
@jwgreen1974 Confirmed - This fixed it for me as well.
When I updated to the latest version of the module, all my videos suddenly showed up as not supported, hiding every movie on the site. This fixed the problem, though.