命令行如下:
发送:
TextInputLayout til = (TextInputLayout) findViewById(R.id.textInputLayout);
editText.setErrorEnabled(true);
editText.setError("You need to enter a name");
收到:
gst-launch-1.0 audiotestsrc ! audioconvert ! audioresample ! 'audio/x-raw,rate=44100,width=16,channels=1' ! voaacenc ! rtpmp4apay ! udpsink host=127.0.0.1 port=5002
当我在ubuntu上播放它们时,它们都可以运行,但是在接收时我听不到任何声音,当我使用gst-launch-1.0 udpsrc port=5002 caps="application/x-rtp,media=(string)audio" ! rtpmp4adepay ! aacparse ! faad ! autoaudiosink
时,我会听到一些声音,为什么以及如何解决它?