Pengtsen R Posts:11264

 |
| 04/27/2010 10:14 PM |
|
youtube videos added with "from internet url" option no longer works. you should use the sql statement above to conver it to embed videos. however, it seems this sql only convert the 1st video, please use this one instead: -- http://www.youtube.com/watch?v=vLIbzerCo_8&feature=popular declare @itemid int declare @videopath nvarchar(200) DECLARE mycursor CURSOR FOR select ItemId,VideoPath from {databaseOwner}{objectQualifier}UVG_Video where charindex('.youtube.', lower(VideoPath)) > 1 order by itemid OPEN mycursor FETCH NEXT FROM mycursor INTO @itemid, @videopath WHILE @@FETCH_STATUS = 0 BEGIN declare @videoId nvarchar(11) declare @embedcode nvarchar(2000) select @videoid=substring(@videopath, charindex('?v=',@videopath)+3, 11) select @embedcode ='<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/' + @videoid +'" /><param name="wmode" value="transparent" /><param name="flashVars" value="autoplay=1" /><embed src="http://www.youtube.com/v/' + @videoid +'" type="application/x-shockwave-flash" width="425" height="355" wmode="transparent" flashVars="autoplay=1"></embed></object></div>' update {databaseOwner}{objectQualifier}UVG_Video set VideoPath = null, EmbedCode = @embedcode where ItemId = @ItemId PRINT cast(@ItemId as varchar(10)) + ' - ' + @videoid + ' - ' + @embedcode FETCH NEXT FROM mycursor INTO @itemid, @videopath END CLOSE mycursor DEALLOCATE mycursor |
|
Pengtsen R http://www.bizmodules.net |
|
|
Ivan Ljubić Posts:29

 |
| 06/21/2010 3:11 AM |
|
Hi Pengtsen, About this problem... I have UVG 03.00.00 and this SQL code helped with displaying Youtube videos. But, as now all Youtube videos are displayed in Youtube player, not UVG flash player, I can't embed video on some page from our gallery and use restrictions on users (that some users can see video and some can't) As I see, when users put new Youtube video, everytime I need to run SQL code again and also embed Youtube videos with html code doesn't work. So, what are my options? Upgrading to new version of UVG (what version number and what is the price) or somehow automating this SQL code and somehow resolve this problem with embeding Youtube html codes? Thanks, Ivan |
|
|
|
|
Pengtsen R Posts:11264

 |
| 06/23/2010 8:14 AM |
|
Ivan, you should tell your users not to add youtube videos with "from interenet" option any more. or, you can create a trigger in your database so it automatically convert url videos to embeded videos. what version of UVG did you purchase before? if you purchased UVG 3.x then you can upgrade to the latest version for free. |
|
Pengtsen R http://www.bizmodules.net |
|
|
Ivan Ljubić Posts:29

 |
| 06/29/2010 8:08 AM |
|
In my records I have this... Ultra Video Gallery 2.4 1 $67.96 Shipped 12/22/2008 6:54:50 AM Ultra Media Gallery 5.4 1 $69.95 Shipped 12/22/2008 6:54:35 AM Ultra Media Gallery 5.4 1 $35.00 Shipped 12/22/2008 6:54:23 AM Ultra Video Gallery 3 1 $0.00 Shipped 2/5/2009 2:25:31 AM Does this mean that I can upgrade to newest version for free, pay some upgrade price or full price? |
|
|
|
|
dydo pl Posts:4

 |
| 06/29/2010 9:20 AM |
|
Yes, i have it too: 1 x $84.95 (Shipped) Ultra Video Gallery 3 (and downloaded UVG+321+STD from snowcovered) Please what shall be done to have youtube videos back. All this discutions didnt lead to anywhere as it seems. Is there any solution for the problem. Thanks |
|
|
|
|
Ivan Ljubić Posts:29

 |
| 06/30/2010 9:23 AM |
|
While I am waiting for your answer... Is there maybe a trial version of UVG 3.2, so we can try on test portal if it solves our problems and then decide for upgrade? Thanks, Ivan |
|
|
|
|
Pengtsen R Posts:11264

 |
| 06/30/2010 10:33 AM |
|
Ivan, UVG 3.2.1 is in snowcovered my downloads page and you are able to get it for free. the youtube problem is no longer supported due to a youtube API change, you should convert it to embeded videos. |
|
Pengtsen R http://www.bizmodules.net |
|
|
Ivan Ljubić Posts:29

 |
| 07/05/2010 3:44 AM |
|
Pengtsen, Thanks, I have upgraded to latest version and about that I will write in other topic... About this Youtube API change... I only need the ability that admin of portal can add Youtube videos in UVG modul and put UVG Flash player on some pages under portal to play those Youtube videos. I say Flash player instead Youtube player because of restrictions on seeing videos for certain users of portal. Can that somehow be done? Thanks, Ivan |
|
|
|
|
Pengtsen R Posts:11264

 |
| 07/06/2010 12:03 AM |
|
| no, you can only add youtube videos with " from embed code" option, so youtube player will be used to play it. |
|
Pengtsen R http://www.bizmodules.net |
|
|
Dennis Tielmann Posts:1


 |
| 07/20/2010 8:17 PM |
|
Do anyone have the solution for this? My UVG videos are also not playing in youtube anymore.. I have 10 UVG's video's there. |
|
|
|
|
Pengtsen R Posts:11264

 |
| 07/22/2010 1:38 PM |
|
| it seems your problem is different, you mean your videos in UVG doesn't play on youtube? can you show me a url to demonstrate that? |
|
Pengtsen R http://www.bizmodules.net |
|
|
king joop Posts:8

 |
| 08/16/2010 5:34 PM |
|
| ive seen youtube includes again on several websites.. does this mean they found a way again? |
|
|
|
|
Rob Hamilton Posts:6

 |
| 08/18/2010 11:14 AM |
|
Might sep issue, but might be related... When I use YouTube Embed code in UVG and then try to share the video using the Facebook link in the "Rate This Video" module it NEVER gives me the video thumbnail as an option... can someone explain this? It gives me ads and other images from the page instead to choose from... Thanks, Rob |
|
|
|
|
Pengtsen R Posts:11264

 |
| 08/18/2010 12:38 PM |
|
| it doesn't post video thumbnail to facebook, just the url of the video player page. |
|
Pengtsen R http://www.bizmodules.net |
|
|
Rob Hamilton Posts:6

 |
| 08/18/2010 2:40 PM |
|
| Is that functionality ever going to be available? It's hard to "share" something in the social atmosphere without a proper thumbnail for it... What would you suggest? |
|
|
|
|
Pengtsen R Posts:11264

 |
| 08/23/2010 3:21 PM |
|
| I'm sorry but the Share feature only shares the url of your current page, it doesn't allow a thumbnail to be posted. |
|
Pengtsen R http://www.bizmodules.net |
|
|
Leather man Posts:12

 |
| 10/18/2010 7:53 AM |
|
What about a direct link to the video, instead of just the player page? For example: http://www.bla.com/videos/play/videoid/1/blavideo.aspx instead of http://www.bla.com/videos/play.aspx It is not really good coming to a blank page. Thanks |
|
|
|
|
Leather man Posts:12

 |
| 10/18/2010 7:55 AM |
|
| The above post is regarding sharing to Facebook |
|
|
|
|
Leather man Posts:12

 |
| 10/18/2010 8:02 AM |
|
| Please disregard. :) |
|
|
|
|
Pengtsen R Posts:11264

 |
| 10/18/2010 3:11 PM |
|
| ok :) |
|
Pengtsen R http://www.bizmodules.net |
|
|