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
xpc_abort(3)						   BSD Library Functions Manual 					      xpc_abort(3)

NAME
xpc_abort -- conditions which cause XPC to abort DESCRIPTION
The XPC API will aggressively defend itself against perceived misuse. Wherever XPC can definitively detect misuse of its APIs or data corrup- tion, it will abort. For example, if the retain count of an object underflows by calling xpc_release(3) on it too many times, XPC will abort the process. Many frameworks opt to keep the program limping along in such a state (and will perhaps print a warning message to the system log), but aborting upon detection provides unmistakable warning that there is a bug present in the application which should be fixed before shipping. When XPC aborts a process, it will place information about the condition which triggered the abort in the Application Specific Information section of the crash report. The message will be human-readable, prefixed with "XPC API Misuse:", and the crash report will indicate the stack trace which caused the abort. XPC will also abort if it detects unrecoverable data corruption in its internal state. The messages for these conditions will be prefixd with "Bug in libxpc:". If you come across such a crash, please file a bug and include the generated crash log, system log and steps to reproduce (if there are any identifiable steps). Currently, the manner in which XPC aborts the process will result in termination due to SIGILL (illegal instruction). The exact signal raised may change from release to release (or platform to platform). But on OS X Lion, SIGILL may be used as a hint that the process was terminated intentionally. DEBUGGING
When debugging in Xcode or at the gdb command prompt, the debugger acts as the exception handler for the process being debugged. As a result, if the process is aborted by XPC, no crash report will be generated, and thus it may not be obvious why the program was terminated. As mentioned before, SIGILL is an indication that the process was terminated intentionally. If you observe the last frame in the crashing stack to be _xpc_api_misuse(), you may use the xpc_debugger_api_misuse_info() API from within the debugger to obtain a human-readable string describing why the process was aborted. For example: Program received signal EXC_BAD_INSTRUCTION, Illegal instruction/operand. 0x000000010012b25e in _xpc_api_misuse () (gdb) p (char *)xpc_debugger_api_misuse_info() $1 = 0x7fff5fbff908 "XPC API Misuse: Over-release of object." (gdb) This message indicates that xpc_release(3) was called too many times on an object. IMPORTANT: The xpc_debugger_api_misuse_info() API can ONLY be called from within a debugger. It is not meant to be called directly from the program. Do not call it directly from your code, and do not rely on the address of the result for any reason. SEE ALSO
xpc(3), xpc_object(3), xpc_objects(3) Darwin 1 July, 2011 Darwin
All times are GMT -4. The time now is 04:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy