Vai al contenuto


Download video java


Questa discussione e' stata archiviata Questo significa che non e' possibile rispondere
126 risposte a questa discussione

#21 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 16:13

drobboxa e passa...


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D


#22 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 16:13

ttsVideo dice niente?



#23 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 16:15

uncazzo...


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D


#24 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 16:15

drobboxa e passa...

 

Okies. https://dl.dropboxus...34870/video.zip

 

Sono riuscito con Ruby ad automatizzare il download tipo questi



#25 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 16:16

L'unica pagina dove trovo un riferimento a questo :asd:

 

http://forum.ceviz.n...ad.php?t=116181



#26 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 16:17

Ma proprio Java dico io? :asd: Cmq sara' una cazzata. Non uso Java da un decennio ma sono sicuro che sara' una puttanata 



#27 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 16:25

package tts.video;

import java.io.IOException;
import java.io.InputStream;
import java.io.PushbackInputStream;

public class Crypto
extends PushbackInputStream {
    private boolean m_bCyrpt = false;

    public Crypto(InputStream oInputStream) {
        super(oInputStream, 12);
        byte[] aHeader = new byte[12];
        try {
            super.read(aHeader);
            String strHeader = new String(aHeader);
            if ("3tiersystems".equals(strHeader)) {
                this.m_bCyrpt = true;
            } else {
                super.unread(aHeader);
            }
        }
        catch (Exception strHeader) {
            // empty catch block
        }
    }

    public synchronized int read(byte[] b, int off, int len) throws IOException {
        int iRead = super.read(b, off, len);
        if (this.m_bCyrpt && iRead > 0) {
            int iLoop = iRead;
            while (iLoop > 0) {
                b[iLoop - 1] = (byte)(b[iLoop - 1] ^ 226);
                --iLoop;
            }
        }
        return iRead;
    }

    public synchronized int read() throws IOException {
        int iByte = super.read();
        if (iByte > -1 && this.m_bCyrpt) {
            iByte ^= 226;
        }
        return super.read();
    }
}

questo dovrebbe essere il cuore del loro sistema di crypt...


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D


#28 Killer application

Killer application

    Schiavo

  • GRULLINO
  • 11.918 Messaggi:

Inviato 15 dicembre 2015 - 16:34

ttsVideo dice niente?

 

ttsvideo non si usa nei dvd?


Immagine inserita

#29 yorkeiser

yorkeiser

    Schiavo

  • Membri
  • StellettaStellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 68.339 Messaggi:

Inviato 15 dicembre 2015 - 16:37

Quella è la VIDEO_TS.

 

Vedo che esiste un TTS video studio, forse sarà il formato proprietario di quella roba


Il sole è giallo

Brava Giovanna, brava

E canto please don't let me be misunderstood mentre parcheggio nel parcheggio l'alfasud


#30 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 17:03

package tts.video;

import java.io.IOException;
import java.io.InputStream;
import java.io.PushbackInputStream;

public class Crypto
extends PushbackInputStream {
    private boolean m_bCyrpt = false;

    public Crypto(InputStream oInputStream) {
        super(oInputStream, 12);
        byte[] aHeader = new byte[12];
        try {
            super.read(aHeader);
            String strHeader = new String(aHeader);
            if ("3tiersystems".equals(strHeader)) {
                this.m_bCyrpt = true;
            } else {
                super.unread(aHeader);
            }
        }
        catch (Exception strHeader) {
            // empty catch block
        }
    }

    public synchronized int read(byte[] b, int off, int len) throws IOException {
        int iRead = super.read(b, off, len);
        if (this.m_bCyrpt && iRead > 0) {
            int iLoop = iRead;
            while (iLoop > 0) {
                b[iLoop - 1] = (byte)(b[iLoop - 1] ^ 226);
                --iLoop;
            }
        }
        return iRead;
    }

    public synchronized int read() throws IOException {
        int iByte = super.read();
        if (iByte > -1 && this.m_bCyrpt) {
            iByte ^= 226;
        }
        return super.read();
    }
}

questo dovrebbe essere il cuore del loro sistema di crypt...

 

 

Beh hai trovato come far caricare il video?



#31 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 17:04

ho smontato il player :poker:


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D


#32 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 17:04

Mi sono appena accorto (avevo dato una occhiata veloce) che il sito su quella pagina turca e' proprio lo stesso :D



#33 Guest_Chips Handon_*

Guest_Chips Handon_*
  • Ospiti

Inviato 15 dicembre 2015 - 17:09

lol è vero. :asd:

 

Bene quindi è un casino vedo. Mi rallegra che non ero io troppo handicappato, bensi la situazione realmente intricata.



#34 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 17:09

Super veloce esempio di come automatizzare il download dei files con Ruby :D

#!/usr/bin/env ruby

require 'mechanize'

Mechanize.new.instance_eval do
  get 'http://www.kinesioitalia.com/corsi_principale.php'

  page.forms.first.tap do |f|
    f['username'] = "..."
    f['password'] = "..."
    f.submit
  end

  get "http://www.kinesiotex.com/portal/systems/KinesioWebsite/jsp/screeningtests_enGB.kin"

  links = page.search("#screeningtesttable").css("a")

  links.each do |link|
    get "http://www.kinesiotex.com/portal/systems/KinesioWebsite/jsp/#{ link["href"] }"
    video_url = page.search(".maincontent").css("a.videolink").first["onclick"].scan(/'([^,]*)'/).flatten.first.scan(/applet_enGB_(.*)\.kin/).flatten.first.gsub(".avi", ".jar")
    full_video_url = "http://www.kinesiotex.com/portal/systems/KinesioWebsite/jsp/jars/#{ video_url }"
    get(full_video_url).save(video_url)
  end
end



#35 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 17:10

lol è vero. :asd:

 

Bene quindi è un casino vedo. Mi rallegra che non ero io troppo handicappato, bensi la situazione realmente intricata.

 

Non sei tu, ovviamente hanno perso un po' di tempo per proteggere quei video. Ma di che si tratta??



#36 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 17:10

si ma fc...serve il decrypt del flusso...quanto mi dai per svilupparlo?...


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D


#37 Sisupoika

Sisupoika

    I'm the reflection of perfection

  • Donatori di sperma
  • StellettaStellettaStellettaStellettaStelletta
  • 2.070 Messaggi:

Inviato 15 dicembre 2015 - 17:11

si ma fc...serve il decrypt del flusso...quanto mi dai per svilupparlo?...

 

Non dirmi che devo ripassarmi sto' cazzo di Java, dai :D



#38 Guest_Chips Handon_*

Guest_Chips Handon_*
  • Ospiti

Inviato 15 dicembre 2015 - 17:30

Non sei tu, ovviamente hanno perso un po' di tempo per proteggere quei video. Ma di che si tratta??

 

Bhè intanto non voglio farvi perdere tempo quindi se diventa complicato a meno che sia un gioco lasciate perdere. E grazie comunque.

 

Mio fratello è quasi fisioterapista e fa già dei corsi a parte per imparare qualcosa di più. Questo era un corso di taping, solo che in due giornate 16 ore totali non impari tutto, ti insegnano le basi e le tecniche più importanti. Per il resto ti danno l'accesso al loro database (ma solo per 60gg). Quindi volevo fare in modo che potesse rivedere e ristudiare tutto in qualunque momento...

 

kinesio-taping.jpg



#39 yorkeiser

yorkeiser

    Schiavo

  • Membri
  • StellettaStellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 68.339 Messaggi:

Inviato 15 dicembre 2015 - 17:37

si ma fc...serve il decrypt del flusso...quanto mi dai per svilupparlo?...

 

Letto di fretta, ma non è un semplice crypt&decrypt con XOR e chiave 226?


Il sole è giallo

Brava Giovanna, brava

E canto please don't let me be misunderstood mentre parcheggio nel parcheggio l'alfasud


#40 ally

ally

    Banned

  • Bannati
  • StellettaStellettaStellettaStellettaStellettaStellettaStelletta
  • 11.498 Messaggi:

Inviato 15 dicembre 2015 - 17:39

Letto di fretta, ma non è un semplice crypt&decrypt con XOR e chiave 226?

 

si e ho postato anche il sorgente...ma non dirlo a nessuno...


... ...le rose son rosse...le viole son blu...io sono schizofrenico...e lo sono anche io...

 

as-shape.gifAthlon Xp 2000+ - MSI K7T266 Pro Raid - 512Mb DDR cas2 - 2xIBM 60Gb - Kyro2 64Mb - FireWire PCI - ATI-TV Wonder - Alice 256 
as-shape.gifPentium 233MMX - 128 MB SDR - 1xMaxtor 40GbGb - 3D Rage - SB16 as-crash.gif Sitolo  hideing_behind_computer_1_.gifCercoScheda Video - V.M.18 :D