"rtmp_transponder_stream_name_prefix =rtmp_ " setting

Yee Hong Liong

New Member
I did not see any line in flashphoner.properties with "rtmp_transponder_stream_name_prefix =rtmp_" setting.

# Config flashphoner.properties
# To get more settings:
# ssh -p 2001 admin@localhost
# default password: admin
# show node-settings
# show node-settings | grep port

#server ip
ip =35.231.217.86
ip_local =10.142.0.2

#webrtc ports range
media_port_from =31001
media_port_to =32000

#codecs
codecs =opus,alaw,ulaw,g729,speex16,g722,mpeg4-generic,telephone-event,h264,vp8,flv,mpv
codecs_exclude_sip =mpeg4-generic,flv,mpv
codecs_exclude_streaming =flv,telephone-event
codecs_exclude_sip_rtmp =opus,g729,g722,mpeg4-generic,vp8,mpv

#websocket ports
ws.port =8080
wss.port =8443

above is all the contents that i found on my server flashphoner.properties.
I think this is the reason that I failed to republish the webrtc as rtmp stream to Facebook and Youtube.
 
Last edited:

Max

Administrator
Staff member
Hello.
The setting
Code:
rtmp_transponder_stream_name_prefix=rtmp_
is the default, so it is not in the flashphoner.properties file.
In your case, to republish WebRTC stream to Facebook and Youtube you should set this parameter to empty in file:
Code:
rtmp_transponder_stream_name_prefix=
 
Top