Fixed incorrect RTSP packets and options query

This commit is contained in:
Ziver Koc 2020-10-26 20:56:34 +01:00
parent 37692613bf
commit 1b25915c33
2 changed files with 81 additions and 18 deletions

View file

@ -24,14 +24,19 @@
package zutil.net.media;
import zutil.log.LogUtil;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.logging.Level;
public class RTSPClientTest {
public static void main(String[] args) throws IOException {
LogUtil.setGlobalLevel(Level.FINEST);
RTSPClient rtsp = new RTSPClient("rtsp://192.168.10.249:8554/unicast");
rtsp.play();