search for: mypip

Displaying 8 results from an estimated 8 matches for "mypip".

Did you mean: myip
2011 Jul 19
3
unix fifo inaccessible via samba share
...tried other things like setting " follow symlinks = yes ", "unix extensions = no" and "log level = 3", making the fifo name less than 8 char, but nothing seems to help. If I try to directly read from the share, from a MSDOS cmdline, with a "type \\server\myshare\mypipe" I get only an "Access Denied" message. I have been able to do this for years on other machines, specifically one running CentOS 5.5, smb version 3.0.33-3.29.el5_6.2 and yes, I can read from the fifo w/o any problem from the linux commandline. I have also tried to read the fifo...
2008 Jul 26
0
No subject
(((echo "some stuff" | wine myexe | tee stdout.txt) 3>&1 1>&2 2>&3 | tee stderr.txt) 3>&1 1>&2 2>&3) > mypipe 2>&1 But I don't think cmd.exe likes pipes nor redirection. I'd hate to have to resort to splitting myexe into two exe's so that I can see if the problem is in the quote section or the ordering section (UNLESS THERE IS A WINEDEBUG FLAG I CAN DECIPHER). Also, if only the orderi...
2007 Aug 21
1
[NetBIOS] Registering new name?
...eck the name and try 'again. ' 'C:\>ping fred 'Ping request could not find host fred. Please check the name and try again. '===========3. Have client hosts send broadcast to locate '===========4. Clients connect to \\MY_GREAT_SERVER\pipes\mypipe" to tx/rx data End Sub ========== Any idea why it's not working? Thank you.
2005 Jun 02
0
chan_capi + mISDN + Fritz PTP
....3.5/chan_capi.c 2005-05-17 13:29:28.000000000 +0200 +++ asterisk-chan-capi-0.3.5-modified/chan_capi.c 2005-06-02 08:38:32.000000000 +0200 @@ -2020,7 +2020,8 @@ ast_pthread_mutex_init(&(p->lock),NULL); i->mypipe = p; if (i->isdnmode) { - p->c = capi_new(i,AST_STATE_DOWN); + p->c = capi_new(i,AST_STATE_RING); + //p->c = capi_new(i,AST_STATE_DOWN);...
2006 Feb 23
2
chan_capi-cm-0.6.4
...han_capi-0.4.0-PRE1/chan_capi.c 2005-05-09 20:45:02.000000000 +0200 +++ chan_capi-0.4.0-PRE1-hacked-rsc/chan_capi.c 2005-06-04 13:30:19.000000000 +0 @@ -2141,7 +2175,8 @@ ast_pthread_mutex_init(&(p->lock),NULL); i->mypipe = p; if (i->isdnmode) { - p->c = capi_new(i,AST_STATE_DOWN); + //RSC + p->c = capi_new(i,AST_STATE_RING);...
2008 May 20
10
Asynchronous Pipe::Server problems
...async.rb:101 Any ideas? Here''s the code, btw: # test_server_async.rb require ''win32/pipe'' include Win32 puts "VERSION: " + Pipe::VERSION Thread.new { loop { sleep 0.01 } } # Allow Ctrl-C CONNECTING_STATE = 0 READING_STATE = 1 WRITING_STATE = 2 class MyPipe < Pipe::Server def connected puts "connected" @state = READING_STATE end def read_complete puts "read_complete" puts "Got [#{buffer}]" @state = WRITING_STATE end def write_complete puts "write_com...
2010 Nov 02
2
Camera MJPEG to Icecast
Dear Thomas Thomas B. Ruecker wrote: > On Mon, Nov 01, 2010 at 05:17:12PM +0700, Bino Oetomo wrote: > >> Now .. I want to do it the otherway with Icecast >> >> I try with wget -nv -O - http://root:root at 192.168.10.234/mjpg/video.mjpg >> | ffmpeg2theora -a 0 -f mjpeg -o /dev/stdout | oggfwd 192.168.10.232 >> 8000 hackme /matamerapi >> >
2010 Nov 02
5
Camera MJPEG to Icecast
...t !! I try to open the ogg file ... and nothing comes up. Now (I ithink) I fix the problem using recipe from http://johnbeales.com/20080820/using-vlc-to-transcode-an-axis-cameras-video-stream-and-stream-it-out-again/#vlc-transcode-solution First I run one vlc just to get the feed to a file called mypipe.mjpg next, I run another vlc to read that local mjpg file , and transcode and send it to IceCast server. First try stoped after some minutes ... Looks like the 2nd vlc reach end of file ... Then I try to click the "loop" button and .... Voila .... it works !! Thankyou for your enlight...