Zahari M. Posted March 16, 2014 Posted March 16, 2014 Hi Martijn Thanks for that! Much appreciated! Cheers
horst Posted March 16, 2014 Posted March 16, 2014 After you installed the Textformatter, go to /site/modules/TextformatterVideoEmbed.module add a line in the methode embedYoutube: // line number +/- 145 $queryString = isset($matches[3][$key]) ? $matches[3][$key] : ''; $queryString = $queryString . "&rel=0"; // this is the new line you should add --- If you make modifications to this module, it's better to rename the module and the file and install it again. This to insures updates won't delete your modifications @Martijn: Normally the module should handle this and all other options simply by adding them to the url in the TinyMCE. Ryan has answered to my post that this should be, but it isn't. Looking to the code shows parts that deal with the params, but they never get executed or after the embed-linkis already created and saved. Haven't investigated further, unfortunately not enough time to do so.
nyo08 Posted March 26, 2014 Posted March 26, 2014 Hello everyebody, hope you're fine. I have a little bug with this module. I installed it, step by step like it's describe in the module page. First, I had an error. But it was in my htaccess file, a line missed : "php_value allow_url_fopen On". After that, the install works... but videos don't appear on the site. PW lets url appear and that's it. And I put it in <p> etc...but that doesnot work. So I would like to know what and where I can check in order to use this module (in my module Page, it is "install" and it's ok, on my FTP, it is in the site/module file)? (sorry for my mistakes in English, as you can see, this isnot my native language ) and thanks for your help.
Martijn Geerts Posted March 26, 2014 Posted March 26, 2014 Have you assigned the formatter to the field ? Admin/Setup/Fields/Edit/Field: name-of-the-field --> Details: TextFormatters 2
nyo08 Posted March 26, 2014 Posted March 26, 2014 Have you assigned the formatter to the field ? Admin/Setup/Fields/Edit/Field: name-of-the-field --> Details: TextFormatters Of course, I had not assigned the formatter to the field...and now it's done...that's work Thank again. I will try to post harder question next time 2
vxda Posted April 7, 2014 Posted April 7, 2014 Hi, im using this module and it works great, but i need a little twitch.Is there a way to get raw value from textarea? i need to get that link.i got news list and i need to show img (thumb) generated by youtube to display on my news list instead of embeded video. Only in news detail page i want to show video. And i need to get url to modyfi it to get thumb, any tips ?Thanks.
adrian Posted April 7, 2014 Posted April 7, 2014 This module will get the thumbnails for you automatically: http://modules.processwire.com/modules/process-get-video-thumbs/ 1
Martijn Geerts Posted April 7, 2014 Posted April 7, 2014 There's a beneficial thing for that Module. You can quickly find embedded video's just by searching video images. 1
vxda Posted April 7, 2014 Posted April 7, 2014 This module will get the thumbnails for you automatically: http://modules.processwire.com/modules/process-get-video-thumbs/ I understung that i can use only one of these modules ?
adrian Posted April 7, 2014 Posted April 7, 2014 You can use Video embed for YouTube/Vimeo and GetVideoThumbs together without any problems. Are you having issues?
vxda Posted April 7, 2014 Posted April 7, 2014 You can use Video embed for YouTube/Vimeo and GetVideoThumbs together without any problems. Are you having issues? Im sitting to my work now il let u know if i get some issues. Thank you for now this helped
vxda Posted April 7, 2014 Posted April 7, 2014 WOW so easy and clear, awesome module just perfect for this thank's guys ! You can use Video embed for YouTube/Vimeo and GetVideoThumbs together without any problems. Are you having issues? I just had to add link to videos again but its working perfectly thank you mate
vxda Posted April 14, 2014 Posted April 14, 2014 Im trying to add video links thru apiim checking if the url is from youtube or vimeo then im doing : if($videoUrl) { $np->video = $sanitizer->textarea($url);} but in result on the page i got url string, if i save page from admin site then its formated to video player. Any way to fix this ?
adrian Posted April 14, 2014 Posted April 14, 2014 I think the issue is simply that this module requires the video link to be in a <p> tag. Take a look at the two functions in the module and you'll see what I mean. So you could just do this and I think it should work. if($videoUrl) { $np->video = '<p>'.$sanitizer->textarea($url).'</p>';} 2
vxda Posted April 15, 2014 Posted April 15, 2014 I think the issue is simply that this module requires the video link to be in a <p> tag. Take a look at the two functions in the module and you'll see what I mean. So you could just do this and I think it should work. if($videoUrl) { $np->video = '<p>'.$sanitizer->textarea($url).'</p>';} Ty Adrian, i will check this out later today
vxda Posted April 15, 2014 Posted April 15, 2014 It did worked ty Adrian, but now module for grabbing images of videos wont populate field with images.
adrian Posted April 15, 2014 Posted April 15, 2014 Do you have the video field selected in the "Video Images Field" setting in the GetVideoThumbs module config?
vxda Posted April 15, 2014 Posted April 15, 2014 Yep module works fine when im saving page thru admin panel video field = videoimages = video_imgs
adrian Posted April 15, 2014 Posted April 15, 2014 Sorry about that - I just pushed a new version that supports grabbing the thumbnails when saving a page through the API as well. Let me know how it goes. 3
vxda Posted April 15, 2014 Posted April 15, 2014 Sorry about that - I just pushed a new version that supports grabbing the thumbnails when saving a page through the API as well. Let me know how it goes. Hah u have nothing to sorry about , i thank you for your work and time . I downloaded newest version from gitbub and it works perfectly thank you again. 2
phil_s Posted June 16, 2014 Posted June 16, 2014 Nice little module! Is there an "easy" way of getting the output into an array I can loop? I want to load content from a couple of different image and video fields into a slider, which would require each of the .TextformatterVideoEmbed divs to be wrapped in a separate .slide div. I suppose I would need to slice up the textfield into divs then loop these? Thanks! Phil
Soma Posted November 9, 2014 Posted November 9, 2014 Just got a client where vimeo video isn't working, turns out that the video ID is 9 digit, that why it isn't working. 8 Didigt or lower work but the video as soon as it has 9 digits refuse to show, just keeps url as text. Anyone an idea why?
Soma Posted November 9, 2014 Posted November 9, 2014 Looks like that the oembed url is returning a 403 Forbidden I think it's cause the video isn't allowed to be embeded, cause other videos with 9 digit id work fine. I'm not sure cause I never had much to do with vimeo, but that must be it.
Martin Muzatko Posted December 7, 2014 Posted December 7, 2014 Hi there! Seeing the weird condition to embed videos resulting in a viewable video in textarea fields you apply it to. paste in YouTube and/or Vimeo video URLs each on their own paragraph. This text formatter is looking for a YouTube or Vimeo video URL surrounded by paragraph tags. I don't want the user to write anything else there, where a video should belong to, which is why I used an URL field, which is wrong I guess, since there are no p-elements surrounding the URL Is there any way touse the URL field along with the formatter to display videos? thanks in advance!
Martijn Geerts Posted December 7, 2014 Posted December 7, 2014 Don't use the formatter. Why not simply use: <iframe width="560" height="315" src="<?php echo $page->your_field; ?>" frameborder="0" allowfullscreen></iframe> 2
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now