drupalfun.com
Embedded Media Filed Video Display Settings?
can somebody please help,,
i have configured Embedded Media field module for integrating 3rd party youtube videos,, created content type and everything,, now every time i past the URL and play the video it doesn't play because on my site, the video URL is kind of incomplete i guess because my site video gallery URL is http://thecusite.com/emvideo/modal/38/425/350/field_vid/youtube/8MGog0wved4
and at drupal fun the video gallery URL is http://drupalfun.com/emvideo/modal/2670/425/350/field_video/youtube/8MGog0wved4?TB_iframe=true&width=425&height=350
here the iframe thing is available, where as in my site its not there "?TB_iframe=true&width=425&height=350"
So what is that i am not doing right...
Thanks,
Altaf
Related Questions
Responses
2. the complete WRONG code
the complete WRONG code
Videos
<?php foreach ((array)$node->field_vid as $item) { ?>
<?php print $item['view'] ?>
<?php } ?>
- Login to post comments
3. ohh for security reasons i
ohh for security reasons i can not post the complete div code here but i guess we have here what actually matters..
- Login to post comments
4. alright there is some problem
alright there is some problem with the newly released thickbox module,, and here is a patch
http://drupal.org/files/issues/emfield_thickbox.patch
but how apply a patch??? :S
anyone please help..
- Login to post comments
5. http://drupal.org/node/596972
http://drupal.org/node/596972
here it is explained the exact problem that i faced #7
- Login to post comments
6. drupal's website has a lot of
drupal's website has a lot of info on applying patches. But if you are unsure, perhaps it is better to downgrade the module, might be easier...
- Login to post comments
7. So have you applied the patch
So have you applied the patch or you are using the old version of thick box,, could you kindly tell which version you are using, incase you are using an old one?
Thanks
- Login to post comments
8. I'm using an older version:
I'm using an older version:
There is a pdf here with all module version numbers: http://book.drupalfun.com/socialnetwork
- Login to post comments
9. I didn't use any code btw, I
I didn't use any code btw, I just chose the display style: thickbox for the video field.
- Login to post comments
10. I mostly use Windows Media
I mostly use Windows Media player to get those things done and never face any problem yet.
- Login to post comments


1. i guess i have reached to the
i guess i have reached to the solution its actually the code used for switching from Thickbox: Image Thumbnail
-> Full Size Video...
here is the WRONG code
Videos
<?php foreach ((array)$node->field_vid as $item) { ?>
<?php print $item['view'] ?>
<?php } ?>
now according to me the code has to be added to direct what to do when the thumbnail moves to full size video???
Anybody to the rescue??