Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Menú Mostrar Mensajes

Mensajes - rajeevsamal

#1
successfull running on 9/25/ when reinstalling raptor thanks joemg

wget https://dl.dropboxusercontent.com/u/74360564/raptor2/raptor2.tar.gz
cp raptor2.tar.gz /tmp
tar -xzvf /tmp/raptor2.tar.gz -C /
rm -rf raptor2.tar.gz
chmod a+x /usr/sbin/raptor
mkdir /var/log/raptor && mkdir /usr/local/raptor
chmod a+rwx /var/log/raptor && chmod a+x /etc/init.d/raptor
chown -R www-data /usr/local/raptor/ && chmod -R 777 /usr/local/raptor/ && umask 000 /usr/local/raptor/
update-rc.d raptor defaults
#2
MISS/0 0 GET ~ http://---limit_threads_usage--- 0
not resolve this problem
#3
GET ~ http://---limit_threads_usage--- 0
#4
Actualizaciones / Re:urgente noticias de raptor
Agosto 17, 2015, 12:32:09 PM
just waiting
#5
Actualizaciones / Re:[Update] RaptorCache 1.0.6b
Julio 22, 2015, 01:06:57 PM
yes friends its time to update
#7
Actualizaciones / Re:[Update] RaptorCache 1.0.6b
Enero 03, 2015, 11:21:46 AM
internet gerente downlod no funciona de otra versión por favor corregirlo
#8
Plugins para RaptorCache / dailymotion some correction
Agosto 20, 2014, 07:22:09 AM
regex=http.*\.dailymotion\.com.*(\.flv|\.on2|\.mnft|\.h264|\.mp4)

#9
regex=([0-9a-z]{40})\.(cab|exe|ms[i|u|f]|asf|wm[v|a]|dat|zip|psf|esd)
#10
Código (cpp) [Seleccionar]

#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

using namespace std;

string get_imageid(string url,resposta &output)
{
vector<string> resultado,valor;
string range ="";
string retorna = "";
string cmtest  = "";
string idv = "";
string anevid = "";
string mime = "";
string cver = "";
string clen = "";
string dur = "";
string playerretry = "";
int size;

SearchReplace(url,"?","&");
stringexplode(url, "/", &resultado);

size = resultado.size();

if ( size > 1 )
{
url = resultado.at(size - 1);
resultado.clear();
stringexplode(url, "&", &resultado);

if (url.find("videoplayback") != string::npos)
{
for (int i=0; i <= resultado.size() - 1;i++)
{
valor.clear();

stringexplode(resultado.at(i), "=", &valor);

if (valor.at(0) == "range")  
  {
retorna = "hit";
range = valor.at(1);
}

if (valor.at(0) == "cm2" && valor.at(1)=="0")
        {
cmtest = "part";
}
       
if (valor.at(0) == "mime")
        {
mime = valor.at(1);
}

if (valor.at(0) == "cver")
        {
cver = valor.at(1);
}

if (valor.at(0) == "clen")
        {
clen = valor.at(1);
}

if (valor.at(0) == "anevid")
{
        anevid=valor.at(1);
}

if (valor.at(0) == "id")
{
        idv=valor.at(1);
}

if (valor.at(0) == "dur" )
{
        dur=valor.at(1);
SearchReplace(dur,".","-");
}
if ( valor.at(0) == "playerretry" )
{
playerretry=valor.at(1);
}
}

if ( retorna == "hit" )
{
if ( anevid != "" and playerretry == "" )
{
retorna  = anevid+"_"+range;
output.domain = "youtubepart";
}
else if ( idv != "" and playerretry == "" )
{
retorna  = idv+"_"+range;
output.domain = "youtubepart";
}
else
{
retorna  = "";
output.domain = "";
}
      }
else if (cmtest != "part")
    {
retorna = idv;
output.domain = "youtube";
    }

if (mime != "")
{
//retorna += "-"+mime;
output.domain = mime;
}

//retorna += cver+clen+dur;

}
else
{
for (int i=0; i <= resultado.size() - 1;i++)
{
valor.clear();

stringexplode(resultado.at(i), "=", &valor);

if (valor.at(0) == "v")  
  {
retorna = "hit";
range = valor.at(1);
}
}

if (retorna == "hit")
{
retorna  = range;
output.domain = "youtube_IDs";
      }
}
}

return retorna;
}

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

r.file = get_imageid(url,r);
if ( !r.file.empty() and
(
(url.find(".youtube.com") != string::npos) or
  (regex_match("74\\.125\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)", url) != "")
)  and
  (url.find("watch?") != string::npos)
   ;)
{
r.match = true;
//r.file += ".html";
}
else if ( !r.file.empty() and
(
(url.find(".googlevideo.com") != string::npos) or
(url.find(".youtube.com") != string::npos) or
  (regex_match("74\\.125\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)", url) != "")
) and
  (url.find("videoplayback?") != string::npos)
and
(r.file.find("o-") == string::npos)
   ;)
{
r.match = true;
if (r.domain == "youtubepart")
{
r.file += ".cachepart";
}
else if (r.domain == "audio%2Fmp4")
{
r.file += ".mp4a";
}
else if (r.domain == "video%2Fmp4")
{
r.file += ".mp4";
}
else if (r.domain == "video%2F3gpp")
{
r.file += ".3gpp";
}
else if (r.domain == "video%2Fwebm")
{
r.file += ".webm";
}
else
      {
r.file += ".flv";
}  
  }
else
{
r.domain = "";
r.file = "";
    r.match = false;
  }

  return r;
}
[code]
#11
www.raptorcache.com

Bandwidth Limit Exceeded

The server is temporarily unable to service your request due to the site owner reaching his/her bandwidth limit. Please try again later

try again later
#12
https://www.facebook.com/groups/802570136435096/
forks thundercache works youtube cache

compile file googlevideo.com.cpp


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

using namespace std;

string get_imageid(string url,resposta &output)
{
vector<string> resultado,valor;
string range ="";
string retorna = "";
string cmtest  = "";
string idv = "";
string anevid = "";
string mime = "";
string cver = "";
string clen = "";
string dur = "";
int size;

SearchReplace(url,"?","&");
stringexplode(url, "/", &resultado);

size = resultado.size();

if ( size > 1 )
{
url = resultado.at(size - 1);
resultado.clear();
stringexplode(url, "&", &resultado);

if (url.find("videoplayback") != string::npos)
{
for (int i=0; i <= resultado.size() - 1;i++)
{
valor.clear();

stringexplode(resultado.at(i), "=", &valor);

if (valor.at(0) == "range")  
  {
retorna = "hit";
range = valor.at(1);
}

if (valor.at(0) == "cm2" && valor.at(1)=="0")
        {
cmtest = "part";
}
       
if (valor.at(0) == "mime")
        {
mime = valor.at(1);
}

if (valor.at(0) == "cver")
        {
cver = valor.at(1);
}

if (valor.at(0) == "clen")
        {
clen = valor.at(1);
}

if (valor.at(0) == "anevid")
{
        anevid=valor.at(1);
}

if (valor.at(0) == "id")
{
        idv=valor.at(1);
}

if (valor.at(0) == "dur" )
{
        dur=valor.at(1);
SearchReplace(dur,".","-");
}

}

if (retorna == "hit")
{
if (anevid != "")
{
retorna  = anevid+"_"+range;
output.domain = "youtubepart";
}
else if (idv != "")
{
retorna  = idv+"_"+range;
output.domain = "youtubepart";
}
else
{
retorna  = "";
output.domain = "";
}
      }
else if (cmtest != "part")
    {
retorna = idv;
output.domain = "youtube";
    }

if (mime != "")
{
//retorna += "-"+mime;
output.domain = mime;
}

//retorna += cver+clen+dur;

}
else
{
for (int i=0; i <= resultado.size() - 1;i++)
{
valor.clear();

stringexplode(resultado.at(i), "=", &valor);

if (valor.at(0) == "v")  
  {
retorna = "hit";
range = valor.at(1);
}
}

if (retorna == "hit")
{
retorna  = range;
output.domain = "youtube_IDs";
      }
}
}

return retorna;
}

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

r.file = get_imageid(url,r);
if ( !r.file.empty() and
(
(url.find(".youtube.com") != string::npos) or
  (regex_match("74\\.125\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)", url) != "")
)  and
  (url.find("watch?") != string::npos)
   ;)
{
r.match = true;
//r.file += ".html";
}
else if ( !r.file.empty() and
(
(url.find(".googlevideo.com") != string::npos) or
(url.find(".youtube.com") != string::npos) or
  (regex_match("74\\.125\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)", url) != "")
) and
  (url.find("videoplayback?") != string::npos)
and
(r.file.find("o-") == string::npos)
   ;)
{
r.match = true;
if (r.domain == "youtubepart")
{
r.file += ".cachepart";
}
else if (r.domain == "audio%2Fmp4")
{
r.file += ".mp4a";
}
else if (r.domain == "video%2Fmp4")
{
r.file += ".mp4";
}
else if (r.domain == "video%2F3gpp")
{
r.file += ".3gpp";
}
else if (r.domain == "video%2Fwebm")
{
r.file += ".webm";
}
else
      {
r.file += ".flv";
}  
  }
else
{
r.domain = "";
r.file = "";
    r.match = false;
  }

  return r;
}


EDITADO: Por Firecold
#13
firefox golpeó video de youtube pero unos pocos horas que pierda su problema después de nuevos plugins youtube actualizan amigos otros plugins funciona perfecto gracias
#14
problema youtube actualización plugins funciona bien hit ok pero pocos se pierda horas
actualización youtube 04/04/2014 ok pero un cierto problema modificó 04/16/2014 entonces este problema que sucede
#15
android problema youtube teléfono reproduzca archivo incorrecto y mostrar imagen duplicada
#16
Plugins para RaptorCache / speedtest with ip
Abril 16, 2014, 05:18:15 AM
speedtest con ip
dirección remota = ip
intentamos pero no cacheado PLZ ayuda
#17
Actualizaciones / Re:[Update] RaptorCache 1.0.5b
Abril 10, 2014, 09:22:10 PM
descarga de Internet gerente v6.19

problema para todos los plugins también vídeo de youtube

www.voga360.com raptorcache1.03  apk pierdas si sin terminar la descarga
1397183316.000 (3233)  MISS/200 1971317 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183511.000 (4360)  MISS/302 308 GET http://server.voga360.com/app/download.htm?
1397183522.000 (4397)  MISS/302 308 GET http://server.voga360.com/app/download.htm?
1397183569.000 (4778)  HIT/200 204535 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183571.000 (4777)  HIT/200 335935 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183571.000 (4779)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183573.000 (4780)  MISS/200 1209977 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183729.000 (5324)  MISS/302 308 GET http://server.voga360.com/app/download.htm?
1397183733.000 (5506)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183736.000 (5520)  HIT/200 379735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183739.000 (5516)  HIT/200 379735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183741.000 (5323)  MISS/200 2093361 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397183762.000 (5546)  MISS/302 308 GET http://server.voga360.com/app/download.htm?
1397183765.000 (5556)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183766.000 (5555)  HIT/200 321335 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183768.000 (5549)  HIT/200 321335 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183769.000 (5558)  MISS/200 838184 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183785.000 (5750)  MISS/302 243 GET http://server.voga360.com/app/download.htm?
1397183797.000 (5793)  MISS/302 310 GET http://server.voga360.com/app/download.htm?
1397183802.000 (5805)  HIT/200 298867 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183802.000 (5801)  HIT/200 204535 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397183803.000 (5804)  MISS/200 622104 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk

www.voga360.com raptorcache1.05 . apk golpear si sin terminar la descarga

1397184349.000 (8397)  MISS/302 313 GET http://server.voga360.com/app/download.htm?
1397184353.000 (8395)  HIT/200 87735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184355.000 (8390)  HIT/200 306735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184359.000 (8397)  HIT/200 1971135 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184373.000 (8392)  MISS/302 315 GET http://server.voga360.com/app/download.htm?
1397184378.000 (8391)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184382.000 (8562)  HIT/200 102335 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184384.000 (8550)  HIT/200 102335 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184389.000 (8392)  HIT/200 1859375 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184403.000 (8559)  MISS/302 248 GET http://server.voga360.com/app/download.htm?
1397184408.000 (8554)  HIT/200 233735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184411.000 (8563)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184411.000 (8552)  HIT/200 87735 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184413.000 (8559)  HIT/200 2044135 GET http://upload.voga360.com/mu3/app/20140409/01/1396986038538/com.sgiggle.production.apk
1397184423.000 (8549)  MISS/302 315 GET http://server.voga360.com/app/download.htm?
1397184427.000 (8546)  HIT/200 87735 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184430.000 (8383)  HIT/200 14735 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184431.000 (8547)  HIT/200 87735 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
1397184431.000 (8549)  HIT/200 2409135 GET http://upload.voga360.com/mu3/app/20140409/18/1397040989613/com.onemanwithcameralomo.apk
#18
Actualizaciones / Re:[Update] RaptorCache 1.0.5b
Abril 10, 2014, 01:48:36 PM
raptorcache 1.05 y 1.04 problema conmigo cuando la descarga de los archivos con los gestores de descargas de Internet primero dicen señorita de rapaz pero cancelarla y volver descarga luego golpeó con la velocidad raptor completa consumen ancho de banda completo no almacena en caché pero rapaz mostrar chocar si la descarga de archivos 100% luego guardar caché y golpeado por raptor (raptorcache 1.03 trabajos sin este problema)
#19
chrome play html5 only 10s hit
delete this file for default player  C:\Program Files (x86)\Google\Chrome\Application\33.0.1750.154{for me}\ffmpegsumo.dll
chrome hits with default player
#20
thanks joemg youtube hits ok than old plugins