I have tried to get back my video (mp4) after I get contents then I base64 encode it, but my video is still not playing. I have tried the code below with images and it works. Why doesn't it work with videos?

<?php
    $con=file_get_contents("kecak.mp4"); //kecak.mp4 work to play with <video> </video> tag
    $en=base64_encode($con);
    $binary_data='data:'.$mime.';base64,'. $en ;
?>

<video width="320" height="240" controls="controls">
    <source src="<?php echo $binary_data ?>" type="video/mp4" /> 
    Your browser does not support the video tag.
</video>
link|improve this question
what is value of $mime variable? – piotrekkr Dec 28 '11 at 20:14
$mime='video/mp4'; – rey1024 Jan 12 at 2:51
feedback

1 Answer

up vote 0 down vote accepted

I believe there is a length restriction for base64_encode. When the input is too long it doesn't output anything. I don't have your video or the details of it to test it, but I think chunk_split could help you out here: http://nl.php.net/manual/en/function.chunk-split.php.

link|improve this answer
thx u. but not take effect. i try to edit like below, its work. but i don't know why i should add AAAS $en=base64_encode(trim($con)); $binary_data='data:'.$mime.';base64,AAAA'. $en ; – rey1024 Jan 12 at 3:01
this is the video link i have similiar question but different :-) stackoverflow.com/questions/8829710/… – rey1024 Jan 12 at 7:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.