Questions tagged [rtmpd]

A C++ implemntation for RTMP Server.

rtmpd or crtmpserver it is a high performance streaming server able to stream (live or recorded) in the following technologies:

  • To and from Flash (RTMP,RTMPE, RTMPS, RTMPT, RTMPTE)
  • To and from embedded devices: Android, IP cameras, Hardware encoders
  • From iOS devices
  • IP-TV using MPEG-TS and RTSP/RTCP/RTP protocols
14 questions
6
votes
0 answers

RTMP_Write function use

I'm trying to use the librtmp library and it worked pretty well to pull a stream. But now I am trying to publish a stream and for that I believe I have to use the RTMP_Write function. What I am trying to accomplish here is a simple c++ program that…
Bilthon
  • 2,461
  • 8
  • 36
  • 44
5
votes
1 answer

Live Video Streaming from android device to server

I need rtmp service url to store my camera video lively from my android devices. according to this site I have referred these following sites to implement live streaming at server side. Helix server Wowza server Adboe Server These servers are…
Venkat
  • 3,447
  • 6
  • 42
  • 61
1
vote
1 answer

RTMPD, stream name not found in any storage

I find myself in a odd situation. I am trying to configure a streaming server, using this tutorial, but unfortunately with no success. Currently I have the newest version of rtmpd server (build number: 784), that can be found here. I installed it,…
Hristo Valkanov
  • 1,689
  • 22
  • 33
1
vote
1 answer

Usage of rtmp-dump/librtmp

I am using compiled version of rtmp-dump from github in my iOS project. Following is the code to connect to the server. rtmp = RTMP_Alloc(); RTMP_Init(rtmp); NSString *url = @"rtmp://192.168.0.119:1935/red5/sw231/"; char *strUrl = (char *)[url…
user2955351
  • 273
  • 4
  • 18
1
vote
1 answer

Livestream with crtmpserver - I can't find the live file

I use crtmpserver to make my RTMP server. I use Adobe Flash Media Live Encoder 3.2 to publish the livestream to the server. It is OK. I use a webflash player to receive the live stream. It is OK. Now, I want to find the live file in the server, but…
Henry
  • 107
  • 1
  • 3
  • 10
1
vote
1 answer

Error in Record / Playback audio - App using flash & Evostream

I'm using evostream, a commercial version of rtmpd. While making a sample record & playback app in flash, I'm able to publish live streams & play them back but not record or append. netStream.publish(_streamName, "record"); Use of the above in…
loxxy
  • 12,990
  • 2
  • 25
  • 56
0
votes
2 answers

about publish() method in NetStream AS3

Can i use publish method to record flv file with streaming servers other than Flash Media Server, or it is just meant for FMS? How about crtmp server?
Vlad
  • 2,739
  • 7
  • 49
  • 100
0
votes
1 answer

crtmpserver error, appselector can be a final destination

I'm trying to setup a CRTMP serve by using its script run and its default script crtmpserver.lua. my os is centos6, and kenerl version 2.6.32. The server start ok, showes /crtmpserver/src/crtmpserver.cpp:267 GO! GO! GO! But when i use ffmpeg to…
0
votes
1 answer

Error: Closing connection: NetStream.Play.Failed

Using librtmp(rtmpdump),I have these 2 methods in my applications, namely: RTMP_Connect(RTMP *r,NULL) and RTMP_ConnectStream(RTMP *r,0) to connect to red5 server and publish streams to the server. When RTMP_ConnectStream(RTMP *r,0) gets…
user2955351
  • 273
  • 4
  • 18
0
votes
1 answer

CRTMP Server RTSP play to Symbian RealPlayer

CRTMP Server is great tool... Nat Traversal when client is behind router working great. ... Tested Android 2.2, 2.3, 4.1, RTSP streaming ok (rtmp flash also ok). But RTSP on RealPlayer (Helix DNA 10.0 onS60) always shows 'can not play media; or…
Asain Kujovic
  • 1,700
  • 13
  • 19
0
votes
1 answer

crtmp unable to read data tcpcarrier.cpp error

I have server with apache2 listening on port 808 instead of port 80 or 8080. I have a flash program which genrated video stream from webcam on client side and send it to server at ip address with rtmp protocol like "rtmp:///flvplayback/" it…
Devendra
  • 89
  • 2
  • 11
0
votes
1 answer

Prevent flushing the buffer

How can I prevent the flushing of the buffer until the playing is finished in AS3? Is it possible? The buffer is emptied and flushed 10-11 seconds before the real end of the flv file. The file is locally saved and I stream it though crtmp server. I…
Vlad
  • 2,739
  • 7
  • 49
  • 100
0
votes
0 answers

Problems streaming local flv file with CRTMP server

Has anybody experienced problem with streaming locally saved flv trough CRTMP like the problem I have: I get the buffer emptied and flushed 10-11 seconds before the real end of the file. I get also "done streaming" message in crtmp log file 10-11…
Vlad
  • 2,739
  • 7
  • 49
  • 100
0
votes
1 answer

NetStream.Buffer.flush prevents form seeking

I have a flash player that I use for streaming prerecorded flv sounds. I have forward and backward buttons which seek forward/backward into the sound while playing. The problem I get is that when I use shorter sound like 30 seconds, when 10 seconds…
Vlad
  • 2,739
  • 7
  • 49
  • 100