0
Personal I am layman in this area. I would like to know how I can this playing this url https://ns5001921.ip-192-99-16.net/Uploads/Animes/1/2x2-shinobuden/01.mp4
in this javascript file
// SISTEMA HD
videohd.click(function(){
var videoID = $(this).attr('data-videoID');
var videos = $('<div class="meuVideo"> <video width="100%" controls="controls" autoplay="true" src="'+ videoID +'" type="video/mp4"></video> </div>');
$('.meuVideo, .nowPlaying').remove();
$(this).parents().eq(2).append(videos);
$('<i class="nowPlaying">? Reproduzindo ...</i>').insertAfter(this);
});
EX BLOGGER
// HTML5 Video
html5bgvideo.click(function(){
$(this).closest('li').addClass('visitado');
var videoID = $(this).attr('data-videoID');
Visitados(videoID);
var videoID = $(this).attr('data-videoID');
var videos = $('<div class="meuVideo" > <video width="100%" controls="controls" autoplay="true" src="http://www.blogger.com/video-play.mp4?contentId='+ videoID +'" type="video/mp4"></video> </div>');
$('.meuVideo, .nowPlaying').remove();
$(this).parents().eq(2).append(videos);
$('<i class="nowPlaying">Reproduzindo ...</i>').insertAfter(this);
});
I’ve tried several ways and it didn’t work out. if anyone can help I’m grateful.. it will look just like this on my test blog
NOTE: click on the episode to watch the video
http://novoblogprograme.blogspot.com.br/2018/03/blog-post_31.html
can only do with videos from YT, BLOGGER AND UOL. but this not getting someone help me please
BRO..,,,,
– Andrielson
@Andrielson marks the answer as a solution, to close the question
– Sveen