Biz Modules Solutions
Contact us
  • Home
  • Products
    • Ultra Media Gallery 8
      • Overview
      • Feature Highlights
      • Sample Galleries
        • Galleria (UMG 8.5)
        • Translucent Slider (UMG 8.4)
        • Tonic Gallery (UMG 8.3)
        • Slider Master (UMG 8.2)
        • Carousel Evolution (UMG 8.1)
        • Spotlight Slider ( UMG 8.1)
        • TripleLayerSlider | homepage slider
        • MediaLibrary | mixed media gallery
        • WidescreenTour2 | stills & trailers
        • Piecerotator | multi media rotator
        • Html Slideshow | image slideshows
        • Widescreenshowroom | showcase
        • UMG Professional | photo gallery
        • UMG Classic | RSS subscription
        • Shooting places on Google maps
        • Virtual Tour
        • Photo calendar
      • Trial & Downloads
      • Testimonials
      • Release Notes
    • Ultra Video Gallery 4
      • Overview
      • Feature Highlights
      • Release Notes
      • Sample Sites
      • Reviews
      • Sample Videos
      • Trial & Downloads
    • Ultra News Article 1.1
      • Overview
      • Feature Highlights
      • Sample
    • Save as PDF
    • Custom development
  • Downloads
  • Buy now
    • License Upgrade
  • Support

Host Partnership

If you are looking for good DNN hosting, then PowerDNN is the best DNN host around!

Need a custom module?

Should you have any questions about custom DNN modules or web projects, please let us know.

Latest Discussions

Critical Error by Dustin Eatchel
Hi, we're getting a critcal error in our UVG 424 Pro module. The error is "A cr...
CarouselEvolution not showing properly . . . by Mike Ulloa
I have recently installed UMG 8.5 on a DNN 5.05 server. The carousel does not...
Empty Gallery. UMG 8.5 by Diego Juzgado
I have delete all medias and albums from a gallery module and now, I can't acces...
pause at the end of a slider display by Brazos Donaho
Was wondering if it would be possible to have an option that could control if th...
Require login to post comments by Marty Goldberg
Is there a way to require users to login before they can post a comment on a vid...
Home  > Support

Support Forum

Unanswered Active Topics Forums Search
Forums > Ultra Video Gallery > Support Questions
Subject: YouTube videos no longer play in UVG?
Prev Next
You are not authorized to post a reply.

Page 5 of 6 << < 123456 > >>
Author Messages
king joop
Posts:8
Bronze Member

04/05/2010 9:05 AM  
if it doesnt work anymore, cant you rewrite the code so when someone adds a url it wraps the embled code around it?

if you know what i mean :)
VinceLL VinceLL
Posts:23
Silver Member

04/05/2010 4:23 PM  
YES that is correct.. i creating a template site with the module installed and i can add a you tube link easily and view them.
Pengtsen R
Posts:11264


04/06/2010 11:02 AM  
use this sql statement to alter all youtube videos added with "from internet url" option to embeded videos:


declare @itemid int
declare @videopath nvarchar(200)

DECLARE mycursor CURSOR FOR
select top 1 ItemId,VideoPath from 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 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



if you want to have a different size you can change 425 and 355 to your prefered value.

it's recommended to make a backup before run it.

Pengtsen R
http://www.bizmodules.net
VinceLL VinceLL
Posts:23
Silver Member

04/09/2010 9:31 AM  
Hi, why can you just upgrade the codes and automatically wrap the youtube links and make them embed codes.? this will then allow users to upload links via link.
VinceLL VinceLL
Posts:23
Silver Member

04/09/2010 10:36 AM  
just wanted to remind you guys again .. that the current build still works locally, but on our window servers 2003 it doesn't work.. any idea why? maybe it can help solve this issue.. thank you.
Bill Siegler
Posts:18
Silver Member

04/09/2010 10:53 AM  
I concur - YouTube video URL linking works locally, but not on a production server. If that is the case, I would encourage BizModules to verify and explore this as a possible fix to the problem.
VinceLL VinceLL
Posts:23
Silver Member

04/09/2010 4:14 PM  
i just updated the codes to force an embed on the youtube link.. and it seems to be working.. but i've only tested and only force embeding a youtube link.. i haven't check other sites such as myspace or something similar..
Pengtsen R
Posts:11264


04/11/2010 9:49 AM  
VinceLL VinceLL:
If your browser client and IIS server are on same computer(this is true when you try it on localhost). the youtube feature still works.

but when you deploy it to a remote computer, it won't work.

Pengtsen R
http://www.bizmodules.net
Pengtsen R
Posts:11264


04/11/2010 9:51 AM  
This doesn't mean a fix can be work out.

The problem is, the video url grabed by server side code is deeply related to your IP address.

When the server side code pass the video url to the flash client, the flash client will try to load the video. if the client computer have same IP address as the server side code, then the video url is good.

But if the client computer have a different IP address, the video url will not work.

It seems there is a possible fix for this problem - to grab the video url inside the flash client, but this can't be done due to a flash security issue. I already tried that.

Pengtsen R
http://www.bizmodules.net
Pengtsen R
Posts:11264


04/11/2010 9:59 AM  
Hi, why can you just upgrade the codes and automatically wrap the youtube links and make them embed codes.? this will then allow users to upload links via link.
=============
If you would like to have this feature you can manually create a "trigger" in database to do this job, if should not be difficult if you have a sql developer.

Pengtsen R
http://www.bizmodules.net
VinceLL VinceLL
Posts:23
Silver Member

04/12/2010 12:34 PM  
you can also make change on your code behind.. make sure to set all the parameters on your resx file so you don't have to keep compiling everytime you make a change.. but it does work.. thanks
venkat aravala
Posts:3
Bronze Member

04/13/2010 11:53 PM  
How can we turn off annotations on youtube video when we embed that youtube video in UVG? Is there any way to do that?
venkat aravala
Posts:3
Bronze Member

04/14/2010 12:13 AM  
Hi,

All our current youtube videos are not playing, instead of converting the youtube videos into embed links, which shows annotations, youtube logo etc. We would like them to stream from our server itself.

Is there some mechanism for changing the source of the videos from youtube to our web server?
Pengtsen R
Posts:11264


04/14/2010 9:29 PM  
How can we turn off annotations on youtube video when we embed that youtube video in UVG? Is there any way to do that?
=========
I belive it can't be done. it's handled by youtube player.

Is there some mechanism for changing the source of the videos from youtube to our web server?
=========
it can't be done too, otherwise anybody else can copy the contents of youtube.

Pengtsen R
http://www.bizmodules.net
Tom Harris
Posts:23
Silver Member

04/16/2010 12:30 AM  
I wrote some code to read the UVG_Videos VideoPath for non-embedded video and playing it in a LightBox. See the example below. I am reading the Top 20 Videos where the VideoPath has YouTube in it and is not null.

http://www.bluedenim.com/tubetools/ProofOfConcept/tabid/226/Default.aspx

Every once in a while the YouTube logo pops up.
Greg Gerber
Posts:9
Bronze Member

04/19/2010 11:39 PM  
I've read this thread and I am more confused than ever. I am not a technical person and any thought of messing with the SQL server scares me.

But, I believe the bottom line is this -- Ultra Video Gallery will no longer play any video posted to YouTube.

It does not appear that the problem can be fixed because YouTube has changed the way it codes the videos.

Some people are able to get YouTube videos to play on their site, but only if they go through an elaborate process of encoding the videos. But, even then, the embedded videos will not work in the compact player -- which we have on our home page.

For us non-technical people, if we have any uploaded videos from YouTube on our website, they will no longer work. Attempting to post new videos will fail.

Consequently, the Ultra Video Gallery module has been rendered useless and we must look for other options.

Is that what I am understanding?
chaloum chaloum
Posts:5
Bronze Member

04/21/2010 10:09 PM  
not sure what the outcome of this thread is but it doesnt seem to be working.

I downloaded the 3.2.1 copies over the dll and nothing. I have no idea what the rest of the thread is about but it would be great to get this working
chaloum chaloum
Posts:5
Bronze Member

04/26/2010 7:10 PM  
i would be good to know where your at with this. There are business' 0n the line here. Whats happening and when do we expect a solution?
Raymond Raffety
Posts:16
Silver Member

04/27/2010 1:34 PM  
My experience is that this broke earlier this month.

I installed the latest update and it immediately fixed my YouTube playback issues.

I am not really tracking on the SQL recommendation because my problem was resolved with the latest version.

BTW, I actually noticed this problem because I use another set of players to play this same content outside of the DNN installation. Those players broker too and I had to search for their replacements.
Tom Harris
Posts:23
Silver Member

04/27/2010 2:11 PM  
I updated to 3.2.1 and my videos don't play. I can get them to play in my player. I think a different modified player will work for everyone in UVG. Most of the YouTube data is now grabbed from the page cache. I have successfully, programmatically downloaded YT videos. I am working on the code now. Whether I can legally share it or not is another question. Also you can pass parameters on the YT querystrings to suppress annotations, call only HD, suppress relevant videos from showing etc.
You are not authorized to post a reply.
Page 5 of 6 << < 123456 > >>

Forums > Ultra Video Gallery > Support Questions > YouTube videos no longer play in UVG?



ActiveForums 3.7
Copyright © 2005-2011 BizModules
Register Login