View Issue Details

IDProjectCategoryView StatusLast Update
1310Composrgalleriespublic2015-05-23 19:26
ReporterRishi Saravanan Assigned ToChris Graham  
PrioritynormalSeverityfeature 
Status resolvedResolutionfixed 
Summary1310: oEmbed support (input)
DescriptionImplement an oEmbed subsystem in Composr. Support for all the main oEmbed types (image, video, etc).

Implement oEmbed support for galleries, for both oEmbed images and oEmbed videos (=anything except images).

Implement a 'comcode_link_handlers' hook for oEmbed, so that oEmbed URLs are recognised within Comcode and posted with a link box rather than just a link.

Implement a config option that defines a white-list of valid URLs to take oEmbed from. This is needed for security, as oEmbed requires a trust relationship, it provides HTML for Composr to render. Probably the white-list can be bypassed if the oEmbed endpoint isn't actually serving HTML content.

Implement a config option that defines manual oEmbed URL patterns, for when services don't advertise it. Hard-code and test support for Instagram, as this is one such service.

Test/ensure this works for Twitter images and Videos.

---

Also consider supporting doing a basic OpenGraph parse, for when oEmbed is not supported by the URL. Follow the white-list too, because webmasters may not want this for every URL pasted.

Also consider supporting image URLs with a comcode_links_handler hook that renders a thumbnail.
Additional InformationOriginal description...

Add support to embed instagram and twitter photos and videos across galleries/news/forums

Aloha,

I happened to notice an announcement that instagram photos and videos can now be embedded across the web along with twitter photos and videos.

What would be the cost to incorporate both services into Composr galleries and news 'add' screens, and forum module, so that a user could just paste the embed code in any of those, similar to how a youtube video can be embedded?

For example, instagram gives this embed code--

<iframe src="//instagram.com/p/byrmq5pgud/embed/" width="612" height="710" frameborder="0" scrolling="no" allowtransparency="true"></iframe>
TagsNo tags attached.
Attach Tags
Attached Files
Time estimation (hours)12
Sponsorship open

Sponsor

Date Added Member Amount Sponsored

Relationships

related to 948 Not AssignedGuest oEmbed support (output) 
related to 1374 ResolvedChris Graham Re-rationalise flash Comcode tag 

Activities

Chris Graham

2013-07-16 10:02

administrator   ~1561

Last edited: 2013-07-16 10:03

Rather than using that embed code, I like the idea of using oEmbed. Instagram don't advertise it in their pages but there is an oEmbed "endpoint" for Instagram photos we could let Composr know about...
http://api.instagram.com/oembed?url=http://instagram.com/p/byrmq5pgud

From that we can get the title and the URL to the image, to embed that image directly:
http://distilleryimage9.ak.instagram.com/7d55ed04ed6411e2a27d22000a9f165c_7.jpg

The advantage to this method is that we can then support all kinds of oembed services (although not completely out of the box, as we'd need to create a white-list feature [security reasons], and not all oEmbed services are discoverable, e.g. Instagram).

Chris Graham

2013-07-16 10:09

administrator   ~1562

(Oh, I skim-read this issue too much. I didn't notice mention of news/forums and of twitter. I'll need to amend the initial hours I put in - sorry about that, although I am happy to look at it more comprehensively, as this does align a lot with oEmbed)

Rishi Saravanan

2013-07-16 17:27

reporter   ~1563

sounds like a nice overview upgrade. I'll take a couple weeks to see what our database syncing cost will be, and then see if this can be afforded at the same time

Chris Graham

2013-07-29 20:33

administrator   ~1587

Worth investigating, maybe we can use a shared API, for instance:
http://ckeditor.com/addon/oembed

Rishi Saravanan

2013-08-06 17:43

reporter   ~1597

However you choose to implement, would be good to allow embedding of audio too

Chris Graham

2013-09-05 18:42

administrator   ~1693

Thanks for the sponsorship :)! This is now under development. I thought the best way to approach this is actually to completely rebuild the internal API for gallery rendering, attachment rendering, and some aspects of Comcode rendering/syntax, and put it all back in with a new pluggable API that covers it all. This should be a much cleaner implementation, with automatic sharing of the benefit of any new media type implementation across different parts of Composr.

Chris Graham

2013-09-07 22:13

administrator   ~1695

We have some good progress on this now. I am about 50% through internal API recoding, but I have oEmbed itself implemented.

The following services are tested to work:
youtube
vimeo
dailymotion
slideshare
scribd
flickr
instagram
photobucket
soundcloud
twitter
twitpic
imdb
wikipedia
cnn
Google maps
xkcd
imgur
tinypic

In theory though we can support anything embed.ly or noembed.com supports. It's just I have not configured/tested the more obscure services. Youtube-Twitter are supported via native oEmbed supported on those websites. Twitpic-Tinypic are via embed.ly/noembed.com (because the websites themselves do not have native oEmbed).

Autodiscovery works. So any website out there that has oEmbed with autodiscovery setup, will automatically work.

---

OpenGraph/Meta/Twitter Card parsing is also implemented. So pretty much any modern website will now show with a nice description rather than just a title. Often, with an image too (if meta tags for it have been defined).

Rishi Saravanan

2013-09-07 22:27

reporter   ~1696

sounds great

Chris Graham

2013-09-08 21:51

administrator   ~1702

Last edited: 2013-09-08 21:51

This is a list of other renderers we have (i.e. not going through oembed [oembed is implemented as just another renderer in the list])...
 video_cnn
 audio_general
 audio_microsoft
 audio_websafe
 flash
 hyperlink
 image_websafe
 pdf
 quicktime
 realaudio
 realmedia
 svg
 video_facebook
 video_general
 video_microsoft
 video_websafe
 vimeo

Renderers are selected automatically via a scoring/qualification system.

Chris Graham

2013-09-12 22:54

administrator   ~1732

This is now implemented.

Rishi, I will come back to this fairly soon with a deployment to your site.

Chris Graham

2013-09-19 21:06

administrator   ~1745

I have done a partial backport of my changes to v9. This is the bulk of the experience (including galleries and direct link posting), but doesn't replace the attachment system's renderers with the new media rendering system and doesn't deprecate some old Comcode tags and add a new 'media tag'. This way, the value of the functionality is available, without messing too much with existing code. The 'clean up' part of this will come with v10, but 'cleaning up' is a future-minded thing, so that's fine.

This is now uploaded for you Rishi :). It seems to be running fine, but even with my caution, I am aware that I have just plugged a lot of new code that partly replaces existing behaviour of existing systems (that's why I waited a week, to make sure I did it at a point where I was well rested, and had had time to mull things over fully). So, if I accidentally put up any bugs, please let me know and I will fix them promptly.

(Other users - take note there is a v9 fork on github, "oembed")

Rishi Saravanan

2013-09-23 21:17

reporter   ~1775

Hello Chris,

I tried an example just now, not because I had planned to fully explore this yet, but because I was watching a video that I realized should be shared on our site. It's a ustream.tv video. What does work is that I can paste the video's embed code in a blog post and it appears. However if I use the Gallery entry screen and paste the video's link code (http://www.ustream.tv/recorded/39054773) in the URL field, I get an error and the message-- You did not upload a thumbnail and we failed to generate one automatically.

Chris Graham

2013-09-24 00:04

administrator   ~1777

Hello,

Generally, you can now add pretty much anything as a video (even if it won't be handled as one as such). However, this would have shown with a hyperlink box rather than a video, and a thumbnail could not be generated automatically. The Composr definition of 'video' has now become very broad.

However, I have run some tests, and you can set up this site to run with oAuth.

I also got justin.tv working, another popular streaming site I had not previously considered.

Go to Admin Zone > Setup > Configuration > Feature options > Media

Add these to the oEmbed white-list:
ustream.tv
justin.tv

Add these to the oEmbed end-points:
(https?://(www\.)?ustream\.tv/.*) = http://www.ustream.tv/oembed
(https?://www\.justin\.tv/.*) = http://api.embed.ly/1/oembed

You may notice justin.tv is using embedly. The service does not directly support oEmbed, but embedly works here as a gateway (as it does with a lot of sites).

It is also worth me noting ustream.tv does not support auto-probing for oEmbed. For some sites this works and only the white-list needs updating (because the end-point is auto-detectable).

You may wonder why we don't white-list all that can auto-probe. It's for security. These sites pipe through HTML to your own, so we need to take care with what we will white-list.

Rishi Saravanan

2013-09-24 02:05

reporter   ~1780

neat. I've just added two videos successfully (and manually creating thumbnails)

Rishi Saravanan

2013-09-24 02:32

reporter   ~1781

I notice that if we add a video and it doesn't generate a thumbnail automatically, and so I go 'edit' the video entry to manually upload a thumbnail, the system doesn't acknowledge it (won't show the thumbnail in the gallery/carousel). The system only acknowledges it if I upload a thumbnail when creating the video entry in the first place.

Can you engineer things so that a thumbnail could be successfully added after the fact? I would imagine users running into this multiple times.

Rishi Saravanan

2013-09-24 04:57

reporter   ~1782

I tried adding a random twitpic to a gallery just now as a test (http://twitpic.com/dee18p) and it didn't work. Got error and message--

You did not provide an upload, or you tried to upload a file that is too large

Chris Graham

2013-09-24 12:27

administrator   ~1783

twitpic gallery image upload now fixed :).

Regarding thumbnails...

I did manage to reproduce this, but found it was not a bug. I think I probably fell into the same trap you did. If you are viewing a flow-mode gallery, it will default to showing the most recent as the default focused video (if you haven't explicitly selected one yet).

If you therefore add a second video, the ones for choice in the carousel would switch around. Given that the thumbnails from ustream are very generic, it is easy to get mixed up about what is what.

Rishi Saravanan

2013-09-24 20:27

reporter   ~1784

thanks Chris.

Not sure if I conveyed the thumbnail question accurately, because I'm not really understanding your response. I meant, can things be engineered so that the user can go back into an existing video entry and upload a new thumbnail for it.

Chris Graham

2013-09-24 20:33

administrator   ~1785

Yes. The thumbnail URL is under 'advanced' on the edit screen.

Rishi Saravanan

2013-09-25 04:47

reporter   ~1787

Last edited: 2013-09-25 04:49

Just to let you know an interesting test I ran just now. I tried using the video entry screen to add this video (I copied the share URL) in the URL field---

http://blogs.windsorstar.com/2013/09/18/fifth-annual-ganesh-festival-attracts-hundreds-helps-bring-community-closer-to-building-new-temple/#ooid=pyazZwZTpozZK-1SaJ1qFmXiKkgtqVpw

Our system did make the entry, but just shows an image of a frame from the move. The image is linked to the URL above. When you click, it tries to open a new overlay window, and it just hangs (just showing the little red loading bar). While it's hanging, if you click the 'See full image' link, then it opens a new browser tab and takes you to the Windsor Star article page which contains the video

Chris Graham

2013-09-25 10:56

administrator   ~1790

This is a Wordpress blog. Wordpress does support oEmbed export, but only in a very basic way. This is coming through as a "link" type, with a thumbnail. I have tuned Composr to better handle this so you'll now get a linker box.

Rishi Saravanan

2013-09-25 21:07

reporter   ~1791

okay, thanks Chris, now it works better.

Rishi Saravanan

2013-09-27 16:31

reporter   ~1794

Hello Chris, perhaps this one is related to the new way links are handled. I got a email notification for a comment on a small news bulletin I made about a new website member. In the bulletin I had said that we welcome Jigisha Patel into this website as an Advanced HA Student. 'Advanced HA Student' is linked to her profile page. However in the email notification where it shows a teaser of the bulletin before showing the comment, it displays the entire link URL instead of just 'Advanced HA Student' etc. Screen shot of email notification enclosed.
Bulletin page--
http://www.saivasiddhanta.org/site/index.php?page=news&type=view&id=aadheenam-announcements%2Fnew-website-member-in_2&blog=0

Chris Graham

2013-09-30 19:38

administrator   ~1800

Ah. I had not considered that these could show up in e-mails.

I have disabled the ability for these link boxes to show for Comcode links, for now.

In v10 we will explicitly tell emails to use direct links. We will also improve our meta description generation to make it more attractive.

Rishi Saravanan

2014-07-23 01:12

reporter   ~2216

Hello Chris,

I must confess to having put this one on the back burner for a while. I wanted to announce it to our site members, but I kept putting it off because I would needed to test out more of the services. I'd like to get it announced, so I've finally done some more testing and here are the results I experienced--


Flickr--
When I attempted to add a Flickr photo to a gallery or blog post, using the Share Link (https://flic.kr/p/nQnTrL) or direct URL (https://www.flickr.com/photos/fozman/14028670228/in/photolist-nQnTrL-m87npd-nnEAUC-nzA2hr-mb43BH-nEybdE-nsvx9C-nanGbk-nRCAts-nCvxMN-ncugbo-ntdQ7P-mnAXBb-nC3JWX-nxY9Ud-mEWFPP-bk5B6i-egFieW-atzdem-apPuvi-9wpU3d-nqZDVD-68DxGi-mDTbpD-cErZvb-fdBx78-jrbPZu-8YCJjB-fHWz35-n8x6Xn-8u4yuW-5UwdPQ-4idkJg-9WAVL9-ae3gBU-6TJooc-csdB5C-5C6JQZ-5B6Ant-62nwQu-nnYNHz-a8di3Z-brTXEo-3Mbb8M-nfruTz-7wm3jd-5oSPjP-e1HAXB-ivT6pb-GfFhG/)

only a thumbnail showed up in the post, not the large image.
———————

Twitpic video—
I tried adding the URL for this video into a video gallery—
http://twitpic.com/e8dpcx
When I pasted it in the URL field, the end result was just an image, not the video. When I pasted the embed code in the Description field, the end result was a JW Player window but the video wouldn’t play.
When I pasted both of the above into a blog post, both only showed up as links, the video was not embedded.
———————

Twitpic photo—
When I paste a Twitpic photo URL (http://twitpic.com/e7qcm5) in a blog post, it just shows as a link. If I paste the embed code (<a href="http://twitpic.com/e7qcm5" title="Farms and Mt. Jefferson. Hazy day with a wildfire burning. I ... on Twitpic"><img src="http://twitpic.com/show/thumb/e7qcm5.jpg" width="150" height="150" alt="Farms and Mt. Jefferson. Hazy day with a wildfire burning. I ... on Twitpic"></a>) into the blog post, the photo shows, but just as a thumbnail, not full size.
However the full size does show if I add the URL to a photo gallery.
——————

Instagram photo—
If a paste a URL (http://instagram.com/p/quf_ZILLM4/?modal=true) in a blog post, the photo shows as thumbnail size, not full size (though the embed iframe code will show full size).
If I paste the above URL into the URL field for adding to a photo gallery, I get a “critical error—bailing out” message when saving.

Instagram video—
If I try to add a video (http://instagram.com/p/nm1_6-nBTS/) to a video gallery, it says an error occurred because of not being able to generate a thumbnail. Can this be fixed?
If I paste the same video URL into a blog post, it just shows as a link, doesn’t embed the video. (However if I paste the iframe embed code in the Source view, the video gets embedded.)
——————————

Photobucket—
If I paste a direct link (http://i1014.photobucket.com/albums/af263/NunoBreia/Ibiza/20140702_113358_zpsceec4008.jpg) in a blog post, it only shows a thumbnail, not the full image. However if I paste the html share code directly in WYSIWYG view (<a href="http://s1014.photobucket.com/user/NunoBreia/media/Ibiza/20140702_113358_zpsceec4008.jpg.html" target="_blank"><img src="http://i1014.photobucket.com/albums/af263/NunoBreia/Ibiza/20140702_113358_zpsceec4008.jpg" border="0" alt=" photo 20140702_113358_zpsceec4008.jpg"/></a>), the full photo shows.

If I paste the direct link above into URL field for adding to a photo gallery, it does show the full photo after saving, which is what we want.
————————————

Soundcloud—
If I paste a share link (https://soundcloud.com/thichnhathanh/five-year-program-and-becoming-a-monastic) into a blog post, it just shows as a link after saving; nothing is embedded.

If I try adding the above to a video/audio album, it says “error, file type not recognized”
———————————


Wikipedia images—
If I try to add a direct URL (http://en.wikipedia.org/wiki/Hinduism#mediaviewer/File:Valmiki_Ramayana.jpg) or the Share link (http://commons.wikimedia.org/wiki/File:Valmiki_Ramayana.jpg#mediaviewer/File:Valmiki_Ramayana.jpg) to a photo album, it gives error and says the filetype is not recognized.

If I add either of the above to a blog post, the image doesn’t show. The image does show nicely if I paste the html embed code in the WYSIWYG view.
————————————

Google Maps—
Tested only in a blog poste. I don’t know if it’s intended that a Share link (https://www.google.com/maps/place/107+Kaholalele+Rd,+Kapaa,+HI+96746/@22.0577409,-159.3928801,17z/data=!3m1!4b1!4m2!3m1!1s0x7c06e222cd51e80b:0x86d769403d23f74e) is supposed to be able to embed the map, but it only shows a link, doesn’t embed. (however the iframe embed code works fine if I paste it in Source view)
——————————

Rishi Saravanan

2014-07-26 18:01

reporter   ~2217

Hello,

I also just discovered a bug. When I paste a youtube direct URL or share URL into the text body of a new news/blog article, and it's there by itself with no text pasted in from somewhere else, then the video gets embedded fine. But as soon as I copy and paste text in there from somewhere else, the embedding stops functioning and only the URL appears in the article body, even if I select the pasted text and click the icon to 'remove formatting'

In other words, the embedding still works fine if I type some text directly in the article body. But if I paste text from somewhere else, it stops working

Chris Graham

2014-08-05 21:45

administrator   ~2220

Hi,

Okay, I've made many changes for you.

1) I have made it so direct link posting no longer specifies a thumbnail. It will now show the largest pic oembed gets.
2) Flickr was not providing a large image. I have fiddled it so the code can locate one. I can't guarantee this will continue to work well though.
3) Instagram was not providing a large image. I have fiddled it so the code can locate one. I can't guarantee this will continue to work well though.
4) Instagram video oembed was not providing a video embed. I have fiddled it to auto-inject the missing embed code using their standard pattern.
5) I have worked around a specification issue with noembed when images are concerned - it was giving the main URL as a remote page link, rather than an image. I've added a special case in the code, making it pull through the thumbnail_url instead if that is also provided.
6) I have fixed instagram photo gallery adding, which was due to a specification issue with their feed. My fix is general purpose, if other providers have this issue the fix will work too.
7) I have added support for a video_thumb theme image, which provides a default if no thumbnail can be generated. I copied over your logo as the default, but you'll want to put in a better file here. I can't generally auto-generate an accurate thumbnail as oEmbed video feeds are HTML-based, not a direct h264 file (for example) -- so there's nothing for me to directly grab against. Well, I probably could do something, but it'd be a big job to make some clever workaround.
8) Soundcloud had developed an SSL issue. I e-mailed them (CC'd you in on it). I have disabled SSL checks for their domain to workaround their problem.
9) I have disabled the automatic-image detection based on URLs, which was hitting in the Wikipedia case. That was a nice trick to make things faster, but it just did not consistently work. "http://en.wikipedia.org/wiki/Hinduism#mediaviewer/File:Valmiki_Ramayana.jpg" is not actually a DIRECT image. So now it looks a lot deeper to find the correct renderer. That said, sharing this URL won't share the specific image, it'll share the main page, because everything after "#" is Javascript-driven rather than a part of the real URL.
10) I have added support for commons.wikimedia.org as well as the main wikipedia.org domain. This share does what you'd expected (shared that specific image).
11) Google had changed maps to use the main Google domain. I have adjusted the code to be able to handle this.
12) I have extended our domain-whitelist feature to be able to white-list the noembed.com and embed.ly domains. So now it doesn't just check against the URLs being posted, but also can get permission via the oembed URLs that will be used to generate the embed. This works well. I did this because I didn't want to authorise HTML from the whole of google.com to run, only for the maps embed code served by embed.ly.

Notes:

1) I don't believe Twitpic video is giving a video player embed at all.
2) When using WYSIWYG make sure you post the URL in plain text, not in an HTML <a> tag. An <a> tag may be automatically made when you paste a link in from a rich-text source. I think this is what you were doing. If you paste as an <a> tag, Composr will not see this as a dangling URL for it to embed stuff against. I don't want to change that, as using <a> tags is a good way to bypass the behaviour of the media renderer if you're carefully marking up your documents.

Chris Graham

2014-08-05 22:28

administrator   ~2221

"I can't generally auto-generate an accurate thumbnail as oEmbed video feeds are HTML-based, not a direct h264 file (for example) -- so there's nothing for me to directly grab against. Well, I probably could do something, but it'd be a big job to make some clever workaround."

Actually, I'll retract that to a degree. For the Instagram video case, they had an OpenGraph image on their page under the given URL, so now we can grab those as thumbnails if they are present.

Most sites won't provide that, for in those cases we'd have to have some clever image scanner, or screenshot creater- which would indeed be very hard to do.



I also found a bug, the Instagram video did not embed correctly when posted as a video. This was due to it not auto-detecting width and height properly, and then it was querying for an embed smaller than Instagram would supply. I have fixed this.

Rishi Saravanan

2014-08-11 02:49

reporter   ~2222

Thank you Chris, I'll look through this and test the examples again to understand better.

I also notice that someone pasted a youtube link in their blog post but because it was a mobile link, it only showed as a link (albeit with a title and 'go to' button), rather than being embedded--

https://m.youtube.com/watch?v=_luHF6CA8A8

Can this kind of link also be embedded?

Rishi Saravanan

2014-08-13 00:59

reporter   ~2225

Hello Chris,

Someone was just trying to add some videos to our video gallery that he had uploaded to facebook from his iphone. It's not working. The system says invalid file type. Here are the URLs that he tried to add--

https://www.facebook.com/photo.php?v=10203546649439097&l=4727286634280771753

https://www.facebook.com/photo.php?v=10203546650199116&l=6186956848313774010

https://www.facebook.com/photo.php?v=10203546653959210&l=5785535620887678229

https://www.facebook.com/photo.php?v=10203546657599301&l=6030176989534386652

https://www.facebook.com/photo.php?v=10203546651039137&l=2326301932019907485

Chris Graham

2014-08-14 17:07

administrator   ~2228

The above cases now work.

Rishi Saravanan

2014-08-14 17:53

reporter   ~2229

Hello Chris, thank you.

I was able to embed the first facebook video above in a blog post, but when I test adding it to a video gallery, I get this error message--

"Peer certificate cannot be authenticated with known CA certificates"

Chris Graham

2014-08-14 20:35

administrator   ~2231

It may be their SSL certificate is signed by a root provider not recognised by your server (basically). I seem to remember this being the case with Facebook.

I just disabled SSL checking on that domain.

Rishi Saravanan

2014-08-15 15:02

reporter   ~2233

Thanks Chris, working now

Rishi Saravanan

2014-08-16 21:07

reporter   ~2234

Hello Chris,

I suspect the above work may be behind a new bug. If I try to add any youtube video to a gallery, I'm getting this error message--

The URL, http://img.youtube.com/vi/youtu.be/0.jpg, was not found

Chris Graham

2014-08-17 10:10

administrator   ~2237

Yes, sorry about that - it should now be fixed.

Rishi Saravanan

2014-08-17 16:09

reporter   ~2238

many thanks for quick fix!

Rishi Saravanan

2014-09-08 01:57

reporter   ~2261

Hello Chris, this morning someone added four facebook videos to galleries and they're not showing properly. This time it's displaying a link to the facebook video page.

I was trying to figure out why the previous facebook videos are showing properly and these new ones aren't. I finally noticed a difference in the URL. The previous ones look like this--
https://www.facebook.com/photo.php?v=1592044873277&l=3851389883115943127

The ones uploaded this morning look like this--
https://www.facebook.com/video.php?v=10203811185252327&l=3190328303484044259

see the difference?

Chris Graham

2014-09-09 10:08

administrator   ~2262

This will now work. It's actually the 3rd pattern of Facebook video URL we've seen now :S.

    /**
     * See if we can recognise this URL pattern.
     *
     * @param URLPATH URL to pattern match
     * @return integer Recognition precedence
     */
    function recognises_url($url)
    {
        if (preg_match('#^https?://www\.facebook\.com/video/video\.php\?v=(\w+)#',$url)!=0) return MEDIA_RECOG_PRECEDENCE_HIGH;
        if (preg_match('#^https?://www\.facebook\.com/video\.php\?v=(\w+)#',$url)!=0) return MEDIA_RECOG_PRECEDENCE_HIGH;
        if (preg_match('#^https?://www\.facebook\.com/photo\.php\?v=(\w+)#',$url)!=0) return MEDIA_RECOG_PRECEDENCE_HIGH;
        return MEDIA_RECOG_PRECEDENCE_NONE;
    }

Rishi Saravanan

2014-09-10 00:43

reporter   ~2263

wow, too bad they're not consistent! Thanks

Rishi Saravanan

2014-09-22 20:46

reporter   ~2269

Hello Chris,

Here's another mysterious embedding issue with someone's recent blog post--

http://www.saivasiddhanta.org/site/index.php?page=news&type=view&id=rajakumar-ramasamys%2Fthree-eyed-cow-born-in&blog=1

The youtube video didn't embed. The URL is not in a <a> tag like what you mentioned earlier, however it does have some strange "advenueINTEXT" stuff in front of it. I tried removing that (and removed the <span> tag entirely), so it would just be the plain URL, but it still won't embed.

I made a new blog post and pasted in the same URL (along with some dummy text) and it embedded fine.

Mysterious!

Chris Graham

2014-09-22 22:16

administrator   ~2270

Okay, this was a Comcode limitation.

Previously it would only detect URLs posted in pure Comcode, not within semihtml.
You would not normally notice as I coded it to convert simple semihtml with URLs back into pure Comcode.

In this case the HTML had more complexity so it would not convert.


I have resolved it though.
Basically I have allowed the Comcode parser to detect URLs within semihtml IF the number of "<" and ">" to the left of the URL match, i.e. if it is not inside an HTML tag at that point of the parsing. i.e. I have given it some minimal HTML awareness so that it was safe for me to include this.

Rishi Saravanan

2014-09-23 00:36

reporter   ~2271

Great, thanks Chris

Rishi Saravanan

2014-10-03 18:40

reporter   ~2275

Hello,

Regarding adding CNN videos to galleries, when I paste a video URL into the URL field, it only results in a link with thumbnail of the video. It doesn't embed the video.

http://www.cnn.com/video/data/2.0/video/world/2014/10/02/navandra-modi-orig-cfb.cnn.html

The only way I was able to embed the video into a gallery entry was to copy the embed code from CNN page--
<iframe width="416" height="234" src="http://www.cnn.com/video/api/embed.html#/video/world/2014/10/02/navandra-modi-orig-cfb.cnn" frameborder="0"></iframe>

and paste that in the video entry description field in Source view.

http://www.saivasiddhanta.org/site/index.php?page=galleries&type=video&id=cnn-video-is-this&wide=1&redirected=1

Chris Graham

2014-10-03 20:02

administrator   ~2276

Another case of a URL variant. Fixed.

Rishi Saravanan

2014-10-03 21:04

reporter   ~2277

okay, thanks! Hope they won't keep changing frequently :)

Rishi Saravanan

2014-10-15 02:42

reporter   ~2291

Hello,

Now I'm seeing a youtube video not embedding in a blog post which uses simple list in its layout--

http://www.saivasiddhanta.org/site/index.php?page=news&type=view&id=moilavadee-moorghen-s%2Fannual-student-prayer&blog=1

Here is some content surrounding one of the two videos trying to be embedded--

<ol style="list">
    <li value="7">
        Preparing the gifts to be distributed to the students after the ceremony.  This is really a big challenge for we are preparing some 4,000 gift pouches consisting of a blessed pen, pencil and vibhuti pack to be used for the exams.  The design for the pouch and the vibhuti packs were  made and then submitted for printing.  Then the small vibhuti packs along with big vibhuti packets were distributed to our kutumba members and some close family members for filling with vibuthi.  Meanwhile the 4,000 pens and pencils were ordered and received.  Then the big preparing and packing up was fixed for Sunday 28<sup>th</sup> September at our place.  Everyone came with their small vibbhuti packs duly filled and the packing up started around 1 p.m. until very late in the evening.  We had a tea break in the afternoon with cakes and refreshments.  It was real fun for all of us with lots of funny jokes and laughter.  Later, we all  had a nice dinner together. We  share below some photos of this most wonderful and rewarding day

 http://youtu.be/t2wyDKDXPB0

<ol style="list">
    <li value="8">

Chris Graham

2014-10-15 11:15

administrator   ~2292

I think this is likely because the Comcode parser doesn't see the nbsp entity (non-breaking space) as whitespace, as it isn't reading the actual HTML. So from its perspective, the URL is stuck on the end of that entity.

I'll see if we can make the parser slightly smarter about this.

Chris Graham

2014-10-15 16:38

administrator   ~2293

Actually it was a different cause. It should be fixed on your site now. The content will need to be passed through an edit though, so the Comcode gets re-compiled.

Rishi Saravanan

2014-10-15 16:58

reporter   ~2294

Thanks Chris!

Rishi Saravanan

2015-01-17 18:16

reporter   ~2454

Hello, I tried to add a Vimeo video on our website--

http://vimeo.com/49976720

And got the following error--


Stack trace…

File -> '/home/saiva/public_html/sources/failure.php'
Line -> 693
Function -> 'die_html_trace'
Args -> array ( 0 => 'PHP NOTICE [8] Undefined index: remote_id in sources/hooks/systems/media_rendering/vimeo.php on line 126 (version: 9.0.2, PHP version: 5.5.15, URL: /site/index.php?page=galleries&type=video&id=swiss-festival-honors&wide=1&redirected=1)', )

File -> '/home/saiva/public_html/sources/global.php(206) : eval()\'d code'
Line -> 1017
Function -> '_fatal_exit'
Args -> array ( 0 => 'PHP NOTICE [8] Undefined index: remote_id in sources/hooks/systems/media_rendering/vimeo.php on line 126', )

File -> '/home/saiva/public_html/sources/failure.php'
Line -> 220
Function -> 'fatal_exit'
Args -> array ( 0 => 'PHP NOTICE [8] Undefined index: remote_id in sources/hooks/systems/media_rendering/vimeo.php on line 126', )

File -> '/home/saiva/public_html/sources/global.php(206) : eval()\'d code'
Line -> 878
Function -> '_Composr_error_handler'
Args -> array ( 0 => 'notice', 1 => 8, 2 => 'Undefined index: remote_id', 3 => 'sources/hooks/systems/media_rendering/vimeo.php', 4 => 126, )

File -> '/home/saiva/public_html/sources/hooks/systems/media_rendering/vimeo.php'
Line -> 126
Function -> 'Composr_error_handler'
Args -> array

File -> '/home/saiva/public_html/sources/media_renderer.php'
Line -> 202
Function -> 'render'
Class -> 'Hook_media_rendering_vimeo'
Object -> Hook_media_rendering_vimeo::__set_state(array( ))
Type -> '->'
Args -> array ( 0 => 'http://vimeo.com/49976720', 1 => 'http://vimeo.com/49976720', 2 => array ( 'thumb_url' => 'http://i.vimeocdn.com/video/344524902_1280x720.jpg', 'width' => '1280', 'height' => '720', 'length' => '0', 'mime_type' => 'application/octet-stream', ), 3 => true, 4 => 59, )

Chris Graham

2015-01-19 13:13

administrator   ~2458

Hello, the above is now fixed.

Rishi Saravanan

2015-01-19 17:55

reporter   ~2460

thanks!

Rishi Saravanan

2015-05-15 19:22

reporter   ~2770

Hello Chris,

Looks like we have yet another pattern of facebook video URL that isn't yet displayable by our video galleries. Here is an example--

https://www.facebook.com/indians.incredible.india/videos/vb.330928850251065/999642426713034/?type=1&theater

Chris Graham

2015-05-17 10:08

administrator   ~2772

Fixed. Updated sources/hooks/systems/media_rendering/video_facebook.php on your site.

Rishi Saravanan

2015-05-17 17:46

reporter   ~2773

many thanks :)

Rishi Saravanan

2015-05-23 17:44

reporter   ~2800

Hello Chris,

I went to add this facebook video to galleries just now--

https://www.facebook.com/UCBerkeley/videos/10153311993674661/

and it didn't embed, just showed a link

Chris Graham

2015-05-23 19:19

administrator   ~2803

Fixed.

Rishi Saravanan

2015-05-23 19:26

reporter   ~2804

great, thanks!

Issue History

Date Modified Username Field Change