Strange Thumbnail images

Hey

fist of all I LOVE THIS SCRIPT !
2nd

i have uploaded my flv video to /albums/videos
Path of video /albums/videos/somefile.flv
ive uploaded my thumb's from the flv using FFMPEG in windows
so path to thumb /albums/videos/somefile.flv.jpg

i can see the images in the videos gallery but they dont show up on the video it self
i have the thumb for the videos, but they show up as normal pictures and not as thumbs

can u plz tell me how to do that ?

CODE FOR FFMPEG
Create a .BAT file and run it, dont forget FFMPEG !
------------------------------------------------------------------------------------
`
@echo off

set FFMPEG="C:\ffmpeg\ffmpeg.exe"
set THUMB="%%~di%%~pi%%~ni.jpg"
set /P SEC="Set second to skip to take screenshot and press : "
set MAKETHUMB=%FFMPEG% -i "%%i" -f mjpeg -t 0.001 -ss %SEC% -y %THUMB%
set FILES="*.mov" "*.mpg" "*.avi" "*.flv" "*.wmv" "*.mp4" "*.mkv"

ECHO ----------------------------------------------------------------------
ECHO.
ECHO [1] videos
ECHO [2] Clean old thumbnails
ECHO.
ECHO [3] Quit
ECHO.
SET /P DirsType="Please select a Folder and press : "

IF /I "%DirsType%"=="1" (
for /r C:\videos\videos\ %%i in ( %FILES% ) do if not exist %THUMB% %MAKETHUMB%
)
IF /I "%DirsType%"=="2" (
for /r C:\videos\videos\ %%i in ( *.jpg ) do if not exist %MOVIE%.mov if not exist %MOVIE%.mpg if not exist %MOVIE%.avi if not exist %MOVIE%.flv if not exist %MOVIE%.wmv if not exist %MOVIE%.mp4 if not exist %MOVIE%.mkv del "%%i"
)
IF /I "%DirsType%"=="3" (
GOTO Quit
`
------------------------------------------------------------------------------------
Sign In or Register to comment.