Sponsored Content
Operating Systems OS X (Apple) Video Contact Sheet on Lion from movies downloaded youtube MP4 Post 302593783 by slashdotweenie on Saturday 28th of January 2012 04:18:50 PM
Old 01-28-2012
Video Contact Sheet on Lion from movies downloaded youtube MP4

Hi

I am running Lion with latest patches

Code:
> uname -a
Darwin wger.local 11.2.0 Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64 x86_64

Installed mplayer, ffmpeg, gnu-getopt and ImageMagick through brew.

I am unable to generate Video Contact Sheet images from movies in MP4 downloaded off youtube.

Tried with two bash scripts. They are only front-ends for mplayer/ffmpeg.

Code:
> ./vcs-1.12.3.bash ../test.mp4
Video Contact Sheet *NIX v1.12.3, (c) 2007-2011 Toni Corvera
Unable to locate DejaVu Sans font. Falling back to helvetica.
Processing ../test.mp4...
Unable to find length of file "../test.mp4". Can't continue.
Cleaning up...

Code:
> ./slickslice-0.9 -x ../test.mp4
VERSION: SlickSlice 0.9

INFO: Looking for the programs SlickSlice depends on:
INFO: 'convert' found, 'mplayer' found, 'montage' found, 'identify' found
USER: SlickSlicing "../test.mp4"

WARN: Custom font DejaVu-Sans-Condensed was not found
WARN: Default font will be used.
HINT: run 'identify -list font' for a list of all available fonts
HINT: or install the font package with DejaVu-Sans-Condensed
INFO: Examining /Users/max/Downloads/bin/../test.mp4
INFO: regular file
sed: 1: "/^ID_/ { s/[]()|&;<>`'\ ...": extra characters at the end of p command
sed: 1: "/^ID_/ { s/[]()|&;<>`'\ ...": extra characters at the end of p command
sed: 1: "/^ID_/ { s/[]()|&;<>`'\ ...": extra characters at the end of p command
INFO: Movie image width is undefined
WARN: Is this a videofile at all?
ERROR: No video to slickslice :(

project sites:

SlickSlice
Video Contact Sheet *NIX

any idea?
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

Cool YouTube Video: Here Comes Another Bubble - The Richter Scales!

You will like this :) fi4fzvQ6I-o (2 Replies)
Discussion started by: Neo
2 Replies

2. Linux

download with youtube-dl the HQ MP4 (not FLV)

Hi Howto download with youtube-dl the HQ MP4? Per default it always downloads FLV and in manual there is no option described for MP4. $ aptitude show youtube-dl Package: youtube-dl New: yes State: installed Automatically installed: no Version: 2010.04.04-1 Priority: extra Section:... (1 Reply)
Discussion started by: slashdotweenie
1 Replies

3. UNIX for Advanced & Expert Users

howto remove meta info about MP4 or FLV file downloaded off Youtube?

Hi I tried a tool called mediainfo > brew info media-info media-info 0.7.51 http://mediainfo.sourceforge.net Depends on: pkg-config /usr/local/Cellar/media-info/0.7.51 (3 files, 14M) http://github.com/mxcl/homebrew/commits/master/Library/Formula/media-info.rb Got details from a test... (3 Replies)
Discussion started by: slashdotweenie
3 Replies

4. What is on Your Mind?

Top 5 Roadblocks to a Secure Cyberspace in 2019 | YouTube Video

Here is a shout-out to wisecracker, who selected the sound track for this new video: Top 5 Roadblocks to a Secure Cyberspace in 2019 https://youtu.be/2rXo_ywM-NQ (7 Replies)
Discussion started by: Neo
7 Replies
dispatch_benchmark(3)					   BSD Library Functions Manual 				     dispatch_benchmark(3)

NAME
dispatch_benchmark -- Measures block execution time SYNOPSIS
#include <dispatch/dispatch.h> uint64_t dispatch_benchmark(size_t count, void (^block)(void)); uint64_t dispatch_benchmark_f(size_t count, void *context, void (*function)(void *)); DESCRIPTION
The dispatch_benchmark() function executes the given block multiple times according to the count variable and then returns the average number of nanoseconds per execution. This function is for debugging and performance analysis work. For the best results, pass a high count value to dispatch_benchmark(). When benchmarking concurrent code, please compare the serial version of the code against the concurrent version, and compare the concurrent version on different classes of hardware. Please look for inflection points with various data sets and keep the following facts in mind: o Code bound by computational bandwidth may be inferred by proportional changes in performance as concurrency is increased. o Code bound by memory bandwidth may be inferred by negligible changes in performance as concurrency is increased. o Code bound by critical sections may be inferred by retrograde changes in performance as concurrency is increased. o Intentional: locks, mutexes, and condition variables. o Accidental: unrelated and frequently modified data on the same cache-line. RETURN VALUE
The dispatch_benchmark() function returns the average number of nanoseconds the given block takes to execute. SEE ALSO
dispatch(3) Darwin May 1, 2009 Darwin
All times are GMT -4. The time now is 12:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy