Stream of Consciousness 1 Alpha 1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Stream of Consciousness 1 Alpha 1 (Default branch)
# 1  
Old 01-26-2009
Stream of Consciousness 1 Alpha 1 (Default branch)

Stream of Consciousness is a simple blogging platform inspired by Blosxom. It uses only the filesystem for storing data. It is simple to setup and use. License: Public Domain Changes:
A lot of code cleanup, static page support, plugin support, and real documentation. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Video stream] network stream recording with mplayer

Hi I used this command: mplayer http://host/axis-cgi/mjpg/video.cgi -user root -passwd root \ -cache 1024 -fps 25.0 -nosound -vc ffh264 \ -demuxer 3 -dumpstream -dumpfile output.avi It's ok but... Video Playing is very fast! Why? Is it a synch problem? What parameter I have to use for... (1 Reply)
Discussion started by: takeo.kikuta
1 Replies
Login or Register to Ask a Question
XmCvtXmStringToByteStream(library call) 								   XmCvtXmStringToByteStream(library call)

NAME
XmCvtXmStringToByteStream -- A compound string function that converts a compound string to a Byte Stream format SYNOPSIS
#include <Xm/Xm.h> unsigned int XmCvtXmStringToByteStream( XmString string, unsigned char **prop_return); DESCRIPTION
XmCvtXmStringToByteStream converts a compound string to a string of bytes representing the compound string in Byte Stream format. This routine is typically used by the source of a data transfer operation to produce a Byte Stream representation for transferring a compound string to a destination. If prop_return is not NULL, this function creates a string of characters in Byte Stream format and returns it in prop_return. The function also returns the number of bytes in prop_return. If prop_return is NULL, the function does not return the Byte Stream format string, but it does calculate and return the number of bytes that would appear in the Byte Stream format string. string Specifies a compound string to be converted to Byte Stream format prop_return Specifies a pointer to a string in Byte Stream format that is created and returned by this function. If prop_return is NULL, no Byte Stream format string is returned. When a Byte Stream format string is returned, the function allocates space to hold it. The application is responsible for managing this allocated space. The application can recover the allocated space by calling XtFree. RETURN
Returns the number of bytes in the Byte Stream representation (whether or not the Byte Stream representation is returned). RELATED
XmString(3) and XmCvtByteStreamToXmString(3). XmCvtXmStringToByteStream(library call)