PLUGIN DE PELICULA : videoslasher / ustream.tv

Publicado por david_domh, Septiembre 10, 2013, 01:06:23 PM

Tema anterior - Siguiente tema

david_domh

Gente acà aportando otros 2 plugins màs ya estàn testeados full cachè

Ustream.tv

Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o ustream.tv.so ustream.tv.cpp
// regex
// http.*\.ustream\.tv.*(\.flv|\.mp4|\.x-flv|\.swf)

string get_filename(string url) {
     vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);
               }
   }


extern "C" resposta getmatch(const string url) {
   resposta r;  

if ( (url.find("ustream.tv") != string::npos)
  ) {
   
      r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;        
        r.domain = "Ustream.tv";
     } else {
        r.match = false;
     }
  } else {
     r.match = false;
  }
  return r;
}


peliculas online : videoslasher.com


Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o videoslasher.com.so videoslasher.com.cpp
// regex
// http.*\.videoslasher\.com.*(\.flv|\.mp4|\.x-flv|\.swf)

string get_filename(string url) {
     vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);
               }
   }


extern "C" resposta getmatch(const string url) {
   resposta r;  

if ( (url.find(".videoslasher.com/") != string::npos)
  ) {
   
      r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;        
        r.domain = "peliculas/videoslasher.com";
     } else {
        r.match = false;
     }
  } else {
     r.match = false;
  }
  return r;
}