MOD: OnlineVideos 1.1 - Posted (25190 Views)
Junior Member
balexandre
Posts: 418
418
As told some days ago in this post, here is the complete tutorial for the Marcel's Video MOD that I call OnlineVideos.
it has all the Marcel's code compiled into a nice step by step tutorial so you can't miss having this great accomplish in your Snitz Forum.
Thank you Marcel for the work smile I just compiled it and created nice icons ... wink
To download the MOD follow up this link
hope you like it...
smile

Updated:
v.1.1: Fixed a small bug that would give "error: illegal use of flash tag!" when using Prompt box; Added video.js pointer to inc_header_short.asp<
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Starting Member
IWishToLearn
Posts: 24
24
Solved the javascript, now I'm back at a black screen video box that won't play a video. I've gone back and doublechecked both headers and removed the spaces from the js files. Next step?
Posted
Starting Member
IWishToLearn
Posts: 24
24
Figured it out. Youtube must have changed something about how their URL embeds work. I couldn't paste the direct URL it gave me, I had to choose embed, and then check the "use old embed code" checkbox, and then go back and get just the url out of the code box it gave me. When I put that code in, I am able to see the video without issue.
Will this necessitate an update to this mod?
Posted
Snitz Forums Admin
ruirib
Posts: 26364
26364
I suppose you are talking about the new short URLs, from the youtu.be domain?
If so, to make them work, I had to add the line in red to the function embedYT, in video.js:
Code:

function EmbedYT(URL, width, height, menu, quality, bg, bg2){
//Checks if the menu constant is entered (correctly)

URL = URL.replace(new RegExp(/http\:\/\/youtu\.be\//g), "http://www.youtube.com/v/");

if(menu != true && menu != false && menu != "true" && menu != "false"){
menu = true; //Replace with default. Default = true.
Posted
Starting Member
IWishToLearn
Posts: 24
24
Thank you! Problem solved :)
Posted
Snitz Forums Admin
ruirib
Posts: 26364
26364
You Must enter a message