Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="resultados"></div>
- <script src='http://code.jquery.com/jquery-1.10.2.min.js'></script>
- <script>
- var pesquisa = "<?php echo $_GET['q']; ?>"; // esse texto aqui indica o que é para pesquisar
- var paginacao = 1;
- var resultados = 3; // aqui indica quantos resultados devem ter, no caso 3
- var url = "http://gdata.youtube.com/feeds/api/videos?q=" + pesquisa + "&start-index="+ paginacao +"&alt=json&max-results="+ resultados+"&orderby=relevance&format=5";
- $(document).ready(function() {
- $.ajax({
- type: "GET",
- url: url,
- cache: false,
- dataType:'jsonp',
- success: function(data){
- $(data.feed.entry).each(function(){
- titulo = (this.title.$t);
- link = (this.link[0].href);
- imagem = (this.media$group.media$thumbnail[3].url);
- try {
- rtsp = (this.media$group.media$content[1].url);
- id = link.split("v=")[1];
- if(rtsp.search("rtsp://") != -1) {
- colocarVideo(titulo, link, id, imagem);
- }
- }
- catch(err) {
- }
- });
- },
- error: function (xhr, ajaxOptions, thrownError) {
- alert(xhr.status + " on Mix Músicas error: " + thrownError);
- if(alert("Ocorreu um erro na pesquisa")) {
- return false;
- }
- }
- });
- });
- function colocarVideo(titulo, link, id, imagem) {
- inner = "<a target=\"_blank\" href=\"http://mixmusicas.com.br/baixar.php?interface=1&nome="+encodeURIComponent(titulo)+"&id="+id+"\">Baixar "+titulo+"</a></font></div> <br/><br/>";
- document.getElementById('resultados').innerHTML += inner;
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement