Hi..

So i have this odd problem..

The videos are gettin' created as they should, but the thumbnails wont seem to work.

This is my ffmpeg Thumbnail Command in the "Edit FlashVideo Settings".
-y -i @input -vframes 1 -ss @thumbtime -an -vcodec mjpeg -f rawvideo -s "@thumbsize" @output

And just for the record - in my tpl file - im using this to show the video:
if($node->field_video[0]['filename'] != ""){print flashvideo_get_video($node);} else{}

(I'm currently using v. 6.x-1.5)

Comments

milanod’s picture

Not sure if ccdk refers to thubmnail for teaser is the problem, but I am having issue with thumbnail not showing in teaser.
The video conversion works and displays with using Dash player in full node body. The Video's thubnail for intro works, so thumbs are created in /files ok.

I am using template for teaser with [thumbnail] in template as per instructions.
I have also tried [thumbnail: index=0] as well as
{print flashvideo_get_thumbnail($node);}
But it still shows just [thumbnail] in teaser.

Can anyone offer tip?

Thanks
Dan

milanod’s picture

Never mind.
my issue was "p-e-b-c-a-k" related. Proper syntax is a must.

The following:
print flashvideo_get_thumbnail($node);
in my template was correct and teaser thumb shows fine now.

Maybe this helps others.