Programming :: Multiplexing 2 Streams To Tx Over Wireless & Demulteplexing On Rx To Individual O/P
Jan 24, 2011
HOW to Go about the Linux Programming of DATA FUSION
Need to Multiplex ( Mux ) two Data Streams broadcast over Wireless and then Demultiplex (DeMux )on the Receiving side and give output on Individual O/p Screens. : DETAILS ::
My main PROJECT is,
1) First Stream :: GPS Stream
2) Video Stream :: Conversion of Analog Signal to Digital ( Using Compression Divx :: Not an issue )
Tx : Merging the Two Streams ( Mux ) and then Transmitting over Wireless as a Single Stream.
Rx : DeMux the Stream and Display GPS Data on Different O/P Screen and Video Stream on Different O/P Screen.
::Boundaries::
For now A Terminal on Both Ends can perform the Function with a OS in the Later Stages it will be embedded.
View 1 Replies
ADVERTISEMENT
Jan 23, 2011
HOW to Go about the Linux Programming of DATA FUSION. Need to Multiplex ( Mux ) two Data Streams broadcast over Wireless and then Demultiplex (DeMux )on the Receiving side and give output on Individual O/p Screens.
View 2 Replies
View Related
Dec 1, 2009
I've decided to start backing up my dvd collection. I want to extract all of the audio, video, and subtitle streams individually (from the main movie title only). Then for convenience and usability I want to put them all in a .mkv container. How can I do this and with which programs? ffmpeg, vlc, mplayer? If I can do this all at once, that's fine. But I don't want to get the streams out of sync.
View 10 Replies
View Related
Apr 20, 2010
I have a problem passing a file descriptor from one process to another.
I have two processes A and B. Both are running in different network and
filesystem namespaces, so it is impossible to use unix domain sockets or
net sockets to pass a file descriptor from process A to process B.
The usage of STREAMS is also impossible, as you can see in
fixunix.com/unix/84093-streams-pipes-ioctl-i_sendfd.html
[quotation begin]
Linux doesn't have STREAMS, which are the System V way
of doing this task. ...
[quotation end]
Are there additional possibilities for file descriptor passing like
using named pipes or something like that or does anybody know
a good workaround for this problem ?
View 9 Replies
View Related
Jan 6, 2011
from the php or html webpages pages, can we find the direct link to the flv files. videos it is easy, ok, because it places with firefox the flv file into the temp. but what about all other streams of webcams, videos, music, ... so that one can use mplayer
View 1 Replies
View Related
Apr 6, 2010
It's been a while since I did any kind of graphics programming, but I would like to start learning how to do graphics stuff in *nix. I started reading the GTK+ 2.0 Tutorial, but a) I've only been able to write a small "Hello World" program, and that tested my patience, and b) I'm not seeing anything which allows you to plot a pixel directly. Back before I migrated to Linux, I used the Windows GDI SetPixel() function for plotting pixels sequentially (this was for a small fractal generator). Mostly what I'm asking is if there's any kind of equivalent function in *nix graphics APIs? GTK+? Would I have to deal with SDL/OpenGL?
View 3 Replies
View Related
Jun 5, 2009
I am trying to figure out if there is a way to start a process, and while it is running, pass input to it as though it were a stream. Although the subject of this post mentions this question is "language-neutral", specifically, I am trying to do this in Common Lisp. Truly, I am looking for the principles behind the method of doing this, which seem to me as though they would be language neutral.
I have done Google searches, and found nothing relevant to my query. Without using sockets and IP communication, I would like to start a process (let's use the MySQL command-line client, for example) and then in my Common Lisp (CL) program, pass it input like so:
Code:
(format *mysql-client-instance* "SELECT * FROM some_table;")
Simply, how would I go about sending input to an active process as though it were a stream? My thinking is there has to be some way to do it - similar to the Expect superset of Tcl.
View 2 Replies
View Related
Jul 31, 2010
I'm having trouble getting ALSA to play multiple sound streams (multiple sounds at once). My code is running on an embedded ARM board using a AC97 sound. It will only play one without any mixing, I have to use pure ALSA as higher sound mixers are a nightmare to cross compile for ARM. I've tested my system with aplay for example
aplay -D plughw:0,1 bang.wav
works fine. So I tried dmix with
aplay -D plug:dmix Win.wav
That gave the following error
ALSA lib pcm_direct.c:1587snd_pcm_direct_parse_open_conf) The field ipc_gid must be a valid group (create group audio)
aplay: main:550: audio open error: Invalid argument
I checked asound with
/etc # cat asound.conf
pcm.EP93XX {
type hw
[code]....
Does this mean dmix will not work? Is there someway with the above setup I can play multiple sounds? I have to use the vendor ALSA build (so can't update ALSA), I can change the .confs however. Also because I'm cross compiling things like pulseaudio SDL are very difficult to get working, so I basically need to use the above ALSA. Is there anyway I can find if dmix exists on the system?
Should add aplay -L does show dmix ?
iec958 'cards.pcm.iec958'
spdif 'cards.pcm.iec958'
[code]....
View 3 Replies
View Related
May 2, 2010
i am on processing text tasks And i found that if you assign a text to a variable is chomp'ed automatically the newline
Code:
variable=$(cat file.txt)
The problem is i can only access the items/lines using:
Code:
for line in $variable
do
echo $line
# Other commands
done
how do i convert this to an indexed array. More importantly, how do i get access to individual $line[0], ..., $line[n] Another thing, if the file.txt, has lines with spaces it is a mess using the for...in..., but echoing prints line by line...o_0
View 11 Replies
View Related
Jan 30, 2010
I can't seem to watch video from CBC's video player - here's an example stream that should play now: http://www.cbc.ca/video/#/Sports/Tim.../ID=1396204261
Or you can try any video from http://www.cbc.ca/video/ I can view the stream using FF in my winblows VM, but FF on Ubuntu Can anyone else get this to work in Firefox?
View 4 Replies
View Related
May 1, 2010
I searched and found threads recommending mozilla-mplayer plugin in the synaptic packet thingymejig. Couldn't find it there myself and although I found a mplayer plugin in the other Ubuntu software library installation program, it didn't allow me to install it (there wasn't an install button!).
So is there a recommended way of getting Firefox to show mms streams?
View 2 Replies
View Related
Nov 20, 2010
I had this setup and working before with some help, so I know it is possible.I want to use Mediatomb to transcode a Shoutcast NSV stream on the fly so I can watch it on my Playstation. I know I can use both mencoder/mplayer and VLC for the transcoding.I am running Ubuntu server 9.04 with the latest Mediatomb from the repo.
View 3 Replies
View Related
Aug 31, 2010
Is it necessary to specify -playlist to mplayer when playing internet streams? Shouldn't it know from the file extension (assuming there is one)?
View 1 Replies
View Related
Oct 7, 2009
if I play an MP3 file in either Totem or Rhythmbox, it thinks it's streaming them, which prevents me from being able to skip to a certain part of the song and the progress bar is greyed out. How do I fix this?
View 6 Replies
View Related
Oct 26, 2009
finding a tool to record udp:// streams that are multicasted.
View 1 Replies
View Related
Feb 18, 2011
[URL].. is a TV player client,allowing connection to several international news streams(video/audio) from around the world. it is available for Linux, Mac as well as pervasive game systems. ran ok in 10.3 but seg faults in 11.3..after manually tinkering with its audio setup in ~/.openalrc it runs good here until the seg fault...sometime it runs five minutes,sometimes 25 minutes or more...i have been unable to detect the triggering event..started by executing 'livestation' in an open terminal always results(eventually) in "Segmentation fault" and nothing else as the client disappears..anyone else seen this?or, running with no problems?
DenverD
CAVEAT: http://is.gd/bpoMD
[NNTP posted w/openSUSE 11.3, KDE4.5.5, Thunderbird3.0.11, nVidia
173.14.28 3D, Athlon 64 3000+]
"It is far easier to read, understand and follow the instructions than to undo the problems caused by not." DD 23 Jan 11
View 9 Replies
View Related
Dec 19, 2009
Hi! This is my first post here, I'm back to openSUSE since the last version I used 10.1 and I'm really enjoying using 11.2 so far .
Banshee (or totem) can't play mmsh streams. I have packman repositorie activated and have installed all gstreammer plugins plus ffmeg and ffmpeg related gstreamer plugins and libmms0.
I can play mp3, xvid and other formats, but these streams are the only thing that does not work.
View 4 Replies
View Related
Aug 19, 2010
i am trying to use Audacity to record internally the sound playing on my computer, and im finding the program quite confusing. I have found that by connecting the line out to the line in i am able to record, but the quality is rubbish, it will be a lot smoother recording it internally but I cant find a way of doing this, does anyone know how to record that way or know where i'm going wrong?
View 2 Replies
View Related
Feb 19, 2010
On my firewall I have DNAT for certain UDP streams. I have set up the DNAT and FORWARD rules:
Code:
#: Redirect port 6006 to TH2
$IPTABLES -A FORWARD -j ACCEPT -d $hst_stratus_th2 -p udp --dport $prt_mdi
[code]....
View 4 Replies
View Related
Jan 5, 2011
I simply want to record audio webcasts with stock Kubuntu tools. I just prefer to not download and install more software.
View 2 Replies
View Related
Jan 5, 2011
Toshiba, Celeron, 64bit, Kubuntu 10.04 LTS I am trying desperately to get Audacity to record webcast streams. Neither the Audacity nor the Kubuntu Community have sufficient answers. get Audacity configured for recording web streams?
View 6 Replies
View Related
Jan 26, 2010
I like to listen to LastFM and a stream from ShoutCast. I would like to record some of these. Which linux program would do this for me...using OpenSuSE 11.0. Would Streamripper be the one? KRecord? Amarok?
View 1 Replies
View Related
Aug 11, 2011
how to install FFServer (RTMPDump is already installed)? So i mean - what do i need to Download on centOS? I wanna Re-Broadcast some of my Streams with RTMPDump + FFServer
View 1 Replies
View Related
Jan 22, 2010
Usually to view individual cpu % we press '1' in the interactive mode of top.
However I am not able to figure out the logic to get the same output in batch mode i.e,
top -n1b
I am redirecting this output to a file to view it later and stuff like that, so I need the batch mode. Is it possible? Installing a separate tool for this is not gonna be possible.
I'm looking for an option that I am missing or some way to capture the output.
View 4 Replies
View Related
Jan 26, 2011
We have quite a few SEO clients who require multiple IPs which are all from different class c allocations. (10 - 50 IPs) used for projects lasting weeks to months at a time. Since we don't have connected IPs in ranges we can't use the range scripts but I don't know of a way to easily add a long list of individual IPs. These are CentOS servers, by the way
View 2 Replies
View Related
Oct 17, 2009
Amarok updated and now I've lost the Shoutcast Streams anyone know how to get them back? Or an application I can use to access them?
View 2 Replies
View Related
Jul 7, 2011
how can I run act_stream.aspx TV-streams in FC15 and Firefox 5?
One example: [URL] When I try to run it in Firefox 5, I only see see a black screen and no sound. The black screen flickers one time and that is it. My plugins:
Code:
[gastonv@gastonv ~]$ ls /usr/lib/mozilla/plugins
libflashplayer.so libtotem-gmp-plugin.so
libjavaplugin.so libtotem-mully-plugin.so
libnpjp2.so libtotem-narrowspace-plugin.so
[Code].....
View 1 Replies
View Related
Oct 18, 2010
I'm using Ubuntu 10.10, and so far I'm digging it a lot more than 10.04 (had annoying sound issues then), but I have a mild issue with playing online radio streaming through either FireFox or Chrome.
After about 25 minutes or so, the audio will just stop, I then have to click on my radio channel to get it back up again. Kind of annoying. I assume this is some sort of plugin or keep alive issue?
View 4 Replies
View Related
Feb 6, 2011
I'm looking for a program of some kind that I can combine 4 (if not 2 minimum) streams of video into one file. The only program so far that I've found that does this is avisynth but I can't seem to make it work at all. Does it even work under ubuntu? I've tried numerous guides and how to's but nothing seems to be working.
Basically I just need something that will take a video file, from several different sources (cameras placed around a car) and be able to place them in a grid form into one file. Basically in a format like this, where each letter is a different video file:
a b
c d
View 5 Replies
View Related
Mar 25, 2010
I'm actually asking this on behalf of a friend but I was wondering if there was a way to change individual backgrounds on each window (the ones in the bottom right hand corner) instead of the background changing for all of them
View 2 Replies
View Related