MySQL Blob bir quicktime video embed nasıl

1 Cevap php

Şu anda aşağıdaki gibi bir kod kullanarak bir MySQL Blob'a görüntüleri çekerek ediyorum:

<img src="data:<?php echo $type; ?>;base64,<?php echo base64_encode($file); ?>" width="240"/>

Ben şimdi bir sayfada bir film embed çalışıyorum ve aşağıdaki gibi ben şu anda kodu kullanıyorum:

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320">
<param name="src" value="http://www.yourdomain/your-video.mov">
<param name="autoplay" value="true">
<param name="type" value="video/quicktime" height="256" width="320">

<embed src="<?php echo base64_encode($file); ?>" height="256" width="320" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed>

</object>

Ben aslında verileri kapma hakkında gitmek nasıl emin değilim? Herhangi bir fikir?

1 Cevap

Gibi bir URL'ye videoyu bakın:

http://www.yourdomain/video.php?video_id=1234

Video.php olarak, header () fonksiyonu ile gönderebilirsiniz Content-Type başlığı üzerinden MIME türü hakkında tarayıcıya bildirir.

BTW, it's the first time that I see someone uses the method you've shown to display an image. Usually, you'd want to refer to a URL like the example above. That's because that the browser will save the image in the cache, which will make your website to load faster.