rtspserver.pl 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #!/usr/bin/env perl
  2. #***************************************************************************
  3. # _ _ ____ _
  4. # Project ___| | | | _ \| |
  5. # / __| | | | |_) | |
  6. # | (__| |_| | _ <| |___
  7. # \___|\___/|_| \_\_____|
  8. #
  9. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  10. #
  11. # This software is licensed as described in the file COPYING, which
  12. # you should have received as part of this distribution. The terms
  13. # are also available at https://curl.se/docs/copyright.html.
  14. #
  15. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. # copies of the Software, and permit persons to whom the Software is
  17. # furnished to do so, under the terms of the COPYING file.
  18. #
  19. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. # KIND, either express or implied.
  21. #
  22. # SPDX-License-Identifier: curl
  23. #
  24. #***************************************************************************
  25. use strict;
  26. use warnings;
  27. BEGIN {
  28. push(@INC, $ENV{'srcdir'}) if(defined $ENV{'srcdir'});
  29. push(@INC, ".");
  30. }
  31. use serverhelp qw(
  32. server_pidfilename
  33. server_logfilename
  34. );
  35. use pathhelp qw(
  36. exe_ext
  37. );
  38. my $verbose = 0; # set to 1 for debugging
  39. my $port = 8990; # just a default
  40. my $ipvnum = 4; # default IP version of rtsp server
  41. my $idnum = 1; # default rtsp server instance number
  42. my $proto = 'rtsp'; # protocol the rtsp server speaks
  43. my $pidfile; # rtsp server pid file
  44. my $portfile;
  45. my $logfile; # rtsp server log file
  46. my $srcdir;
  47. my $flags = "";
  48. my $path = '.';
  49. my $logdir = $path .'/log';
  50. while(@ARGV) {
  51. if($ARGV[0] eq '--pidfile') {
  52. if($ARGV[1]) {
  53. $pidfile = $ARGV[1];
  54. shift @ARGV;
  55. }
  56. }
  57. elsif($ARGV[0] eq '--portfile') {
  58. if($ARGV[1]) {
  59. $portfile = $ARGV[1];
  60. shift @ARGV;
  61. }
  62. }
  63. elsif($ARGV[0] eq '--logfile') {
  64. if($ARGV[1]) {
  65. $logfile = $ARGV[1];
  66. shift @ARGV;
  67. }
  68. }
  69. elsif($ARGV[0] eq '--logdir') {
  70. if($ARGV[1]) {
  71. $logdir = $ARGV[1];
  72. shift @ARGV;
  73. }
  74. }
  75. elsif($ARGV[0] eq '--srcdir') {
  76. if($ARGV[1]) {
  77. $srcdir = $ARGV[1];
  78. shift @ARGV;
  79. }
  80. }
  81. elsif($ARGV[0] eq '--ipv4') {
  82. $ipvnum = 4;
  83. }
  84. elsif($ARGV[0] eq '--ipv6') {
  85. $ipvnum = 6;
  86. }
  87. elsif($ARGV[0] eq '--port') {
  88. if($ARGV[1] =~ /^(\d+)$/) {
  89. $port = $1;
  90. shift @ARGV;
  91. }
  92. }
  93. elsif($ARGV[0] eq '--id') {
  94. if($ARGV[1] =~ /^(\d+)$/) {
  95. $idnum = $1 if($1 > 0);
  96. shift @ARGV;
  97. }
  98. }
  99. elsif($ARGV[0] eq '--verbose') {
  100. $verbose = 1;
  101. }
  102. else {
  103. print STDERR "\nWarning: rtspserver.pl unknown parameter: $ARGV[0]\n";
  104. }
  105. shift @ARGV;
  106. }
  107. #***************************************************************************
  108. # Initialize command line option dependent variables
  109. #
  110. if(!$pidfile) {
  111. $pidfile = server_pidfilename($path, $proto, $ipvnum, $idnum);
  112. }
  113. if(!$srcdir) {
  114. $srcdir = $ENV{'srcdir'} || '.';
  115. }
  116. if(!$logfile) {
  117. $logfile = server_logfilename($logdir, $proto, $ipvnum, $idnum);
  118. }
  119. $flags .= "--pidfile \"$pidfile\" ".
  120. "--portfile \"$portfile\" ".
  121. "--logfile \"$logfile\" ".
  122. "--logdir \"$logdir\" ";
  123. $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
  124. $| = 1;
  125. exec("exec server/rtspd".exe_ext('SRV')." $flags");