here is the solution
and you have to load the page and the file will be created<?php
function decryptSubtitle($encrypted, $key = "encryption ID ")
{
$decrypted = "";
$encryptedLen = strlen($encrypted);
$keyLen = strlen($key);
for ($i = 0; $i < $encryptedLen; $i++)
{
$dataCharCode = ord($encrypted[$i]);
$keyInt = substr($key, ($i % $keyLen) - 1, 1);
$decodedChar = chr($dataCharCode - $keyInt);
$decrypted = $decrypted . $decodedChar;
}
$decrypted = base64_decode($decrypted);
return $decrypted;
}
file_put_contents("subtitles.txt", decryptSubtitle(file_get_contents("link for your files")));
?>
+ Reply to Thread
Results 1 to 7 of 7
-
Last edited by hexodark; 11th Nov 2013 at 15:35.
-
Video streaming? I'm moving you to our subitle function.
Nope, I have no idea how to decode it. -
a forum member told me the following
For the subtitles you have to guess how they are encrypted and encoded.
It can be done by decompiling the flash player and finding the corresponding ActionScript function that do it and then adapt it to your own needs -
IMHO, you should upload a copy of your problematic file(s) to this forum
(OR to elsewhere, except mega.co.nzof course).
I know nothing about ActionScript or decryption, BUT someone else may know,
and a sample file probably wouldn't be "useless" in this case. -
act honestly
original author decryption script
http://stream-recorder.com/forum/showpost.php?p=63893&postcount=2
decryption script to several websites without mentioning the original author,this is not how it's supposed to be
you can't present someone else's work as your own. -
[ 9876543210 ]
Last edited by El Heggunte; 12th Nov 2013 at 00:53. Reason: zzzzzzzzzzz
Similar Threads
-
decode 5.1 matrix surround wav file to 6 mono wav files
By Zerrax in forum AudioReplies: 2Last Post: 24th Nov 2013, 07:39 -
How to display logo, .ass subtitle, and sequence png in some frames with av
By xicudiz in forum EditingReplies: 0Last Post: 9th May 2011, 08:15 -
How do I edit an image file (png) into an AVI
By Ecko_Blue in forum EditingReplies: 4Last Post: 9th Mar 2010, 20:20 -
decode/decrypt mp3,mp4, ipod, mov etc to avi to burn to dvd
By brightpenny in forum Video ConversionReplies: 1Last Post: 16th Sep 2009, 16:24 -
How do you hardsub .ass files into a .mp4 file?
By kevinayP in forum SubtitleReplies: 1Last Post: 26th Jan 2009, 08:27