Just some feed back.
I've had to read carefully your mail to figure out how it work.
I'm quiet a perfect beta-tester for you. I've got video in my photo tree
and I've indexed the directories in jBrout but they look "empty".
So I've wrote a little script to create thumbnail :
#!/bin/bash
VIDEO=$1
THUMB=`echo $1 | cut -d"." -f1 | sed s/$/.jpg/`
ffmpeg -itsoffset -4 -i $VIDEO -vcodec mjpeg -vframes 1 -an -f
rawvideo -s 320x240 $THUMB
jhead -mkexif $THUMB
jhead -rgt $THUMB
exiv2 -M "add Exif.Image.Make Ascii VideoThumbnail" $THUMB
jhead -dc $THUMB
Refresh my video directories, enabling your plugin and it works well !
Could you just add parole as a video player in your list ? or perhaps is
there a "default player" as for the default browser?
I'm under ArchLinux with Xfce as DE.
Le 25/02/2012 17:34, Francois Chartier a �crit :
> 2nd version, without error when no video is found :)
>
>
> 2012/2/25 Francois Chartier <chartier...@gmail.com
> <mailto:chartier...@gmail.com>>
>
> Hello to all,
>
> I just wrote a plugin to open videos. If you have, like me, videos
> in you photo tree, associated with jpg thumbnails, this plugin will
> enable you to open them in a video player (totem, vlc, mplayer for
> now). If you select JPG pictures, it will try to find videos with
> the same name except the extension, and if you select a folder, it
> will look for videos in the folder.
>
> Anyone care to try it ? there might be bugs, but it seems to work
> all right for me. Did not try it with windows, though.
>
> Best regards,
> Fran�ois
--
,,,
( �> enn...@laposte.net
( / ) Linux Registered User 328488
>||<
I've modified your script to handle .wav too.
(well, .wav aren't video, that's not clean but it works)
Le 29/02/2012 11:15, Gmail a �crit :