vcs

This is the tasklist for Video Contact Sheet *NIX

Although I use it mainly as a TO-DO list, feel free to fill any bug-reports or feature requests you might have.

Homepage: https://p.outlyer.net/vcs/
Documentation: https://p.outlyer.net/vcs/docs

ID Task Type Severity Summary Status Progress  desc Due In Version
 148 Feature RequestVery Low Include generation of config/profile from the command-l ...Closed
100%
1.12 Task Description

No need for description

 152 TO-DOVery Low Release 1.13 Closed
100%
Meta: Release Cycle Task Description

This is a meta-item depending on bugs/features required to complete before releasing vcs 1.13

Previous:  FS#140 ,  FS#170 
Next: FS#153

 166 TO-DOVery Low Support WebM Closed
100%
1.12.2 Task Description

WebM: http://www.webmproject.org/

Uses VP8 video and Vorbis audio.

Current Status:


Identification

MPlayer: Video detected as VP80
FFmpeg:
* 0.5.1+svn20100311: Not supported (fails in the safe-length-detection stage)
* 0.6~svn20100603: Video detected as libvpx


Capture

Both appear to work fine.

 170 TO-DOVery Low Release 1.12.3 Closed
100%
Meta: Release Cycle Task Description

Bugfixes from the 1.13 branch should be backported to 1.12, since 1.13 will need a lot of testing.

Previous:  FS#165 
Next:  FS#152 

 171 TO-DOVery Low Deprecate './vcs.conf' in favour of profiles Closed
100%
1.13 Task Description

The function that vcs.conf in current dir accomplished is covered by profiles. If wanted it can still be manually loaded with -C :pwd or -C vcs.conf

 176 TO-DOVery Low Filmstrip not realistic Closed
100%
1.13 Task Description

The filmstrip mode has had a placeholder implementation since the start, it should look closer to an actual film strip.

E.g.: http://sites.google.com/site/elsamuko/gimp/sprocket

 179 TO-DOVery Low Add codec identification for FRAPS captures Closed
100%
1.13 Task Description

mplayer: FPS1

i.e.:
ID_VIDEO_CODEC=fffraps
ID_VIDEO_FORMAT=FPS1

ffmpeg: fraps

i.e.:
Stream #0.0: Video: fraps, yuvj420p, 1680x1050, 30 fps, 30 tbr, 30 tbn, 30 tbc
 226 Bug ReportVery Low Pre-releases error on files with single quotes in their ...Closed
100%
1.13.2 Task Description

Pointed out by Miya

eval: line 1874: syntax error in conditional expression
eval: line 1874: syntax error near `got'
eval: line 1874: `[[ -n 'File's got problems.mp4.png' ]]'
Internal error at safe_rename():1510: [[ -n 'File's got problems.mp4.png' ]]
147Feature RequestMediumConfiguration options revampAssigned
90%
1.14 Task Description

The available configuration options need a serious review and renaming. Old names will be accepted with warnings for either two releases or six months.

Also, should provide a sample configuration file so that the syntax and options are clearer.

125Feature RequestVery LowBlank screen evasion (mtn feature)Deferred
90%
1.14 Task Description

Great feature, implemented in mtn

http://moviethumbnail.sourceforge.net/

See also FS#126

41Feature RequestLowAdjust timestamps size to capture sizeRequires testing
80%
Task Description

Originally suggested by Dogn Redhammer

32Bug ReportHighvcs gets stuck on first capture (or during probe)Researching
0%
Task Description

Fails on some files (gets stuck forever while capturing the first frame).

Happens often with Matroska. 1.0.7a introduced a workaround (-Wo) with ffmpeg’s argument order that worked with other file types.

197TO-DOHighMove away from /dev/shmAssigned
0%
1.14 Task Description

/dev/shm isn’t really intended as an alternate temporary location, and VCS’ temporary files can easily grow too large for it too.

As a possible alternative offer a first-run choice of temp-dir (maybe suggesting /dev/shm).

References:
http://wiki.debian.org/ReleaseGoals/RunDirectory#Why_put_.2BAC8-dev.2BAC8-shm_and_.2BAC8-tmp_under_.2BAC8-run.3F http://stackoverflow.com/questions/9745281/tmp-vs-dev-shm-for-temp-file-storage-on-linux

5Bug ReportMediumMeta-information gets overlapped with small contact she...Assigned
0%
Task Description

When the resulting contact sheet is too thin, the meta-information header is cramped and fields overlap.

109Bug ReportMediumFailure to capture with packed B-frames in AVIUnconfirmed
0%
Task Description

Originally reported by Dougn Redhammer

137Bug ReportMediumHang with RM filesUnconfirmed
0%
Task Description

Original report by Dougn Redhammer

vcs hangs with some RM files.

Tracing shows it gets stuck in mplayer_identify.

MPlayer can play the files fine from the terminal. Although it exits with «MPlayer interrupted by signal 11 in module: uninit_vcodec».

I can reproduce the abrupt termination, it happens when using Real’s native decoder (w64codecs, /usr/lib/codecs/drvc.so). Using FFMpeg’s decoder (MPlayer’s -vc ffrv30) MPlayer exits normally.

I can’t reproduce the hang either way.

194Feature RequestMediumFiles incorrectly reporting "too short" length aren't d...Researching
0%
? Task Description

As reported by Dirk Reiners (paraphrased)

Files incorrectly reporting too short length (unlike too long), pass the safe_length_measure check ⇒ This prevents correcting length.

196TO-DOMediumffmpeg is deprecatedAssigned
0%
1.14 Task Description

See http://libav.org/, Jan 27 2012.
Also http://libav.org/index.html#fftools_rename for changes to the syntax.

Must change to avprobe/ffprobe and/or avconv.

378Bug ReportMediumBlank frame evasion produces error on latest ImageMagic...Assigned
0%
1.14 Task Description

Reported by Paul:

Hey,
I'm using VCS via Homebrew Install (https://formulae.brew.sh/formula/vcs#default) and since the last update of imagemagick (?) I get dozens of error messages:
convert: Expected operator at '.mean*100' @ error/fx.c/GetOperator/2408

Confirmed to happen on ImageMagick 7.1 on Linux, the contact sheet is generated but blank frame evasion is skipped

382Bug ReportMediumLook into detecting or setting manually GNU getoptAssigned
0%
? Task Description

Reported by KW in comments: https://outlyer.net/2019-11-26:vcs-1-13-4-released/#comment-51875

With the new script I'm getting issues the following error:
No compatible version of getopt in path, can't continue.
Enhanced getopt (i.e. GNU getopt) is required

Added by Darko in comments: https://outlyer.net/2019-11-26:vcs-1-13-4-released/#comment-52719

The homebrew's version of vcs has this at line 186:
declare GETOPT=/opt/homebrew/opt/gnu-getopt/bin/getopt
While Toni's just uses whatever is on path:
declare GETOPT=getopt
… which on macOS is non-gnu version of getopt.

Added by X in comments: https://outlyer.net/2019-11-26:vcs-1-13-4-released/#comment-53401

The issue is on line 186. Brew version has this:
declare GETOPT=/usr/local/opt/gnu-getopt/bin/getopt
The trunk version has:
declare GETOPT=getopt
When I backport the most important change you did in the trunk version ('`fx:image.mean` > `fx:mean`') then indeed the error messages on '.mean*100' are gone.
53Bug ReportLowffmpeg doesn't accept file names with spacesUnconfirmed
0%
Task Description

Originally reported by Phil Grundig

Version of ffmpeg: ffmpeg (CVS-060515)

54Bug ReportLowminutes printed as hours with mplayerUnconfirmed
0%
Task Description

Originally reported by Phil Grundig

Version of mplayer: mplayer (1.0pre8cvs)

56Feature RequestLowAdd transcode as possible capturerDeferred
0%
1.14 Task Description

Originally requested by Phil Grundig

See vcs:devel:transcode

 91 Feature RequestLow Drop GNU getopt Closed
0%
? Task Description

GNU getopt is quite a requirement for non-GNU userlands. If at all possible replace with something else.

95Bug ReportLowRunning vcs from find fails on WMVs. They work directly...Unconfirmed
0%
Task Description

Originally reported by Tomasz Strózik

Example given:

$ find $DIR \(-name "*.avi" -o -name "*.wmv" -o -name "*.mpg" -o -name "*.mp4" \) -exec vcs -dt -ds -n 12 -c2 -H 200 --jpeg --quiet {} \;

Works on avi, mpg and mp4 but fails on wmv with
Failed to capture frame (at second xxx.000)

Processing the same file directly works:

$ vcs -dt -ds -n 12 -c2 -H 200 --jpeg --quiet File.wmv
101Bug ReportLowHeading bleeds into left side of contact sheet when tit...Deferred
0%
118Feature RequestLowCreate manpageDeferred
0%
124Feature RequestLowBetter looking timestampsAssigned
0%
151TO-DOLowOverride-able variables cleanup: Removal of deprecated ...Assigned
0%
1.14
155Bug ReportLowColourised messages are printed before colour disabling...Assigned
0%
178Submitted PatchLowffmpeg + piped mplayer dump can be used to identifyRequires testing
0%
1.14
227TO-DOLowFailed blank frame evasion should go back to original t...Assigned
0%
1.14
249TO-DOLowAdd libav as possible capturerAssigned
0%
1.14
315Feature RequestLowRecurse directories, output to current dirAssigned
0%
?
363Bug ReportLowFile names with '#' lead to errors when creating versio...Assigned
0%
1.14
367Feature RequestLowAdd HDR supportAssigned
0%
1.14
377Feature RequestLowAllow screenshotting half of the video (for side-by-sid...Assigned
0%
?
50Feature RequestVery LowAllow setting text outlinesDeferred
0%
52Feature RequestVery LowAllow review of screenshots before composingLimbo
0%
?
69Feature RequestVery LowImage modeLimbo
0%
92Feature RequestVery LowSupport OpenSolaris/SunOSLimbo
0%
2.0
93Bug ReportVery Lowgrep -o is not portableAssigned
0%
1.14
104Feature RequestVery LowAccept percentages in --from and --toDeferred
0%
126Feature RequestVery LowEdge detection / blur evasion (mtn feature)Deferred
0%
153TO-DOVery LowRelease 1.14Limbo
0%
Meta: Release Cycle
162TO-DOVery LowImplement pluginsAssigned
0%
2.0
163TO-DOVery LowMove rarely used features to pluginsAssigned
0%
?
164Bug ReportVery LowImplement instrumentationAssigned
0%
?
172TO-DOVery LowDon't autoload './vcs.conf'Assigned
0%
1.14
200TO-DOVery LowRelease 2.0Assigned
0%
Meta: Release Cycle
Showing tasks 151 - 200 of 201 Page 4 of 5

Available keyboard shortcuts

Tasklist

Task Details

Task Editing