ZenphotoCMS Forum
Support of videos for ZenPhoto - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: Support of videos for ZenPhoto (/thread-769.html)

Pages: 1 2 3 4 5 6


Support of videos for ZenPhoto - randee - 26-09-2007

Is there anyway to play AVI files with ZEN Photo?




Support of videos for ZenPhoto - BertSimons - 03-11-2007

In version 1.1 I am not able to get a videothumb, it always shows the defaultvideothumb although I upload an image with the same name. eg. rug.flv and rug.jpg..

I thougt this should be possible or not?




Support of videos for ZenPhoto - BertSimons - 09-11-2007

in version 1.1.2 the videothumbs show up again...




Support of videos for ZenPhoto - senne - 11-11-2007

wrong post!




Support of videos for ZenPhoto - sbillard - 11-11-2007

There was a problem with custom video thumbs that was fixed in 1.1.2




Support of videos for ZenPhoto - sunkast - 12-11-2007

I need a little help modifying the video code in version 1.1.2. In my previous version, 1.0.8.2 with the video hack added manually, I was able to modify the code to display the still image of the video I had uploaded instead of the video player initially not showing anything except a black screen with the play button. The code I was using doesn't work in the new version. Here is what I had before.

so.addVariable("image","http://www.sunkast.com.jpg");

That would produce the URL I needed to display the image in the video player. How can I do the same thing with the new version?




Support of videos for ZenPhoto - sunkast - 13-11-2007

I worked out a solution for myself. For anyone that is looking to do the same, here is what I did.

In template-functions.php under "//ZenVideo: Show video player with video loaded or display the image." I added

`function getAlbumLink() {

global $_zp_current_album;

return urlencode($_zp_current_album->name);

}`

Then I added a new variable to the flash video player

so.addVariable("file","image=' . FULLWEBPATH . '/albums/' . getAlbumLink() . '/' . getImageTitle() . '.jpg");

On a side note, I've found an awesome gui frontend for ffmpeg to convert my videos into FLV. It's called WinFF. It's free and can also encode other media formats.