Wowza Community

wowza rtp packets over udp or tcp?

wowza rtp packets over udp or tcp?

how can i config if to make it over udp?

For incoming MediaCaster streams the switch is in the Application.xml /MediaCaster /RTP /RTSP /RTPTransportMode. Change “interleave” (TCP) to “udp”

For outgoing, you can add these Property settings to the Application.xml /RTP /Properties container:

<Property>
	<Name>forceMPEGTSOut</Name>
	<Value>true</Value>
	<Type>Boolean</Type>
</Property>
<Property>
	<Name>rtpWrapMPEGTS</Name>
	<Value>true</Value>
	<Type>Boolean</Type>
</Property>

Richard

Make sure all udp ports are open or VLC will fail-over to tcp.

https://www.wowza.com/docs/how-to-troubleshoot-rtsp-rtp-playback

Richard

You should not need those Property settings for Android. You just need to allow UDP traffic. That means opening all UDP ports in your firewall (0 - 65335) and properly mapping UDP requests to your Wowza server in your network. Android won’t work otherwise. It is not a Wowza configuration, it is a network and server configuration.

Richard

thanks for your reply,i tried your method. but when my VLC player behind a NAT the packets i received are still TCP packets?

and is there any other Propertys i can choose,where can i find these Propertys?

thanks in advance.

Richard,

i tried http://www.wowza.com/html/mobile.html on my android-vlc,it seems that the packets i received still over TCP when my android-vlc behind a NAT!

i want the packats i receive are over UDP,how should do config the wowza media server?

and i tried this:

forceMPEGTSOut

true

Boolean

rtpWrapMPEGTS

true

Boolean

it still over tcp!

thank you!