Gentoo Archives: gentoo-user

From: Neil Bothwick <neil@××××××××××.uk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Video Network Stream from Pipe
Date: Wed, 16 Jan 2008 20:43:59
Message-Id: 20080116204328.7afd57b8@loonquawl.digimed.co.uk
In Reply to: [gentoo-user] Video Network Stream from Pipe by Florian Philipp
1 On Wed, 16 Jan 2008 20:29:35 +0100, Florian Philipp wrote:
2
3 > #!/bin/bash
4 > mencoder [...] -o - | tee video.mkv | stream-app
5 >
6 > So far it should work and vlc would be the natural choice for the
7 > streaming app. However, vlc seems unable to read from a pipe so I need
8 > something else.
9
10 What about using a fifo, can vlc handle that?
11
12 mkfifo mystream
13 mencoder [...] -o - | tee video.mkv >mystream &
14 streamapp mystream
15
16
17 --
18 Neil Bothwick
19
20 Quark! Quark! Beware the quantum duck!

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] Video Network Stream from Pipe Florian Philipp <lists@××××××××××××××××××.net>