/video-contact-sheet/trunk/debian-package/debian/control |
---|
8,7 → 8,7 |
Package: vcs |
Architecture: all |
Depends: bc, bash, grep, imagemagick (>= 6.0), mktemp, mplayer, ffmpeg, gsfonts |
Depends: bc, bash (>= 3.1), grep, imagemagick (>= 6.0), mktemp, mplayer, ffmpeg, gsfonts |
Recommends: lsdvd |
Description: vcs is a script that creates a contact sheet (preview) from videos |
Video Contact Sheet *NIX (vcs for short) is a script that creates a contact |
/video-contact-sheet/trunk/debian-package/debian/changelog |
---|
1,3 → 1,10 |
vcs (1.0.100a-upstream.2) experimental; urgency=low |
* UNRELEASED YET |
* debian/control: Added min. bash version |
-- Toni Corvera <outlyer@gmail.com> Fri, 17 Apr 2009 03:03:04 +0200 |
vcs (1.0.100a-upstream.1) experimental; urgency=low |
* New version |
/video-contact-sheet/trunk/Makefile |
---|
1,7 → 1,7 |
#!/usr/bin/make -f |
# $Id$ |
VER=$(shell grep VERSION vcs|head -n1|sed 's/#.*//'|sed -r 's/.*"(.*)".*/\1/g') |
VER=$(shell grep VERSION vcs | head -n1 | sed 's/\#.*//' | sed -r 's/.*"(.*)".*/\1/g') |
all: |
@echo "Use $(MAKE) dist" |
/video-contact-sheet/trunk/tests/test_funkymodes |
---|
0,0 → 1,20 |
#!/usr/bin/env bash |
vcs=vcs |
if [ -z "$1" ]; then |
echo "Usage: $0 <file>" |
exit 1 |
fi >&2 |
HEIGHT="-H240" |
echo "Standard" >&2 |
$vcs -n4 -c2 $HEIGHT "$1" |
echo "Polaroid" >&2 |
$vcs -n6 -c3 -k polaroid $HEIGHT "$1" |
echo "Photos" >&2 |
$vcs -n6 -c3 -k photos $HEIGHT "$1" |
echo "Filmstrip" >&2 |
$vcs -n8 -c2 -k film $HEIGTH "$1" |
Property changes: |
Added: svn:executable |
+* |
\ No newline at end of property |
Added: svn:keywords |
+Rev Id Date |
\ No newline at end of property |
/video-contact-sheet/trunk/CHANGELOG |
---|
21,8 → 21,9 |
* FEATURE/COSMETIC: Polaroid mode now produces a polaroid-like frame, the |
older version is now renamed as simply 'photos' |
New "funky" modes: newer polaroid, photos (older polaroid), |
polaroidframe. |
polaroidframe |
* Overrideable variables: DISABLE_SHADOWS and DISABLE_TIMESTAMPS (set to 1 |
to disable) |
* BUGFIX/COSMETIC: Re-added the missed space before filename |
* BUGFIX/COSMETIC: Reworked alignment and padding |
* Timestamps size is adjusted with smaller captures |
37,7 → 38,7 |
* BUGFIX/COSMETIC: Corrected the count of captures in manual-only mode (-m) |
* FEATURE: Added a minimun length to use the end offset |
* BUGFIX: Fixed the regression on highlights from the last version (extra |
padding was being added my IM automatically) |
padding was being added by IM automatically) |
* INTERNAL: Simplified use of IM's identify |
* BUGFIX: Fixed parsing of manual timestamps including milliseconds |
(when seconds didn't include the s character they were accidentally |
142,7 → 143,7 |
* Requirements detection now prints all failed requirements |
* BUGFIX: (Regression introduced in 1.0.4b) Fail if interval is longer |
than video |
* Don't print the sucess line unless it was really successful |
* Don't print the success line unless it was really successful |
* Allow quiet operation (-q and -qq), and different verbosity levels |
(only through config overrides) |
* Print vcs' identification on operation |
/video-contact-sheet/trunk/. |
---|
Property changes: |
Modified: svn:mergeinfo |
Merged /video-contact-sheet/branches/1.11:r375-379 |