search for: video_preview

Displaying 5 results from an estimated 5 matches for "video_preview".

2005 Nov 11
2
[PATCH] icecast video preview 2
Updated version of video preview covering frame writing every 3 keyframe and a xsl typo. Best regards :) kysucix -- Make things as simple as possible, but no simpler. - Albert Einstein
2005 Nov 11
0
[PATCH] icecast video preview 2
...ude" + LIBS="$LIBS -L$extrapath/lib" + fi + AC_CHECK_HEADER(png.h, + [AC_CHECK_LIB(png, png_libpng_ver, + [AC_DEFINE(WITH_PNG, + 1, + [Define as 1 if you want to enable generation of PNGs])] + ICECAST_OPTIONAL="$ICECAST_OPTIONAL video_preview.o" + LIBS="$LIBS -lpng -lz", + echo "png library not found or too old -- not including PNG support", + -lz)]) +fi + dnl Checks for header files. AC_HEADER_STDC Index: src/format_theora.c =============================================================...
2005 Nov 11
1
[PATCH] icecast video preview
Hi. Here it is my patch to put a video preview of a theora stream in status.xsl. I just added a: <video-preview>1</video-preview> parameters in icecast.xml.in that control the previewing function. It encodes a png in $webroot/$mountname.tmp and then move it to $webroot/$mountname.png As for now it saves a frame every theora keyframe, which is probably too heavy for the server but
2006 Mar 09
3
theora2png
hi, In the list archives I saw a discussion about theora png thumbnails for the status page. I tried the patches posted against the latest SVN but no joy in getting it to work. Is there a version compatible with the latest SVN sources, or should I try patching an older version of Icecast? adam -- Adam Hyde ~/.nl selected projects http://www.xs4all.nl/~adam the streaming suitcase
2006 Mar 15
0
theora2png / video preview
....sh (doh!) the process, for anyone reading the list in the future is: 1. get the svn version of icecast trunk: svn co http://svn.xiph.org/icecast/trunk/icecast/ icecast 2. make sure you have libpng dev libraries (in debian : apt-get install libpng2-dev) 3. get the patch sent to this list earlier (video_preview.diff) 4. patch the source by doing this: * cd to the svn dir (icecast in the above example) * run this command : patch -p0 < video_preview.diff * run autogen : ./autogen.sh * ./configure;make;make install 5. create a dir called 'video_preview' in your web root (see the icecast conf for...