123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- /**
- * The MIT License (MIT)
- *
- * Copyright (c) 2013-2018 Winlin
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
- * this software and associated documentation files (the "Software"), to deal in
- * the Software without restriction, including without limitation the rights to
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
- * the Software, and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #include "../../objs/include/srs_librtmp.h"
- int connect_ic(srs_rtmp_t irtmp);
- int connect_oc(srs_rtmp_t ortmp);
- int proxy(srs_rtmp_t irtmp, srs_rtmp_t ortmp);
- // whether use verbose log.
- int verbose = 0;
- // 2000 is about 30s.
- #define PITHY_PRINT_EVERY_MSGS 2000
- int main(int argc, char** argv)
- {
- int ret = 0;
-
- // user option parse index.
- int opt = 0;
- // user options.
- char* in_rtmp_url = NULL;
- char* out_rtmp_url = NULL;
- // rtmp handler
- srs_rtmp_t irtmp, ortmp;
-
- printf("Ingest RTMP to server like FFMPEG over srs-librtmp %d.%d.%d\n",
- srs_version_major(), srs_version_minor(), srs_version_revision());
-
- if (argc <= 2) {
- printf("ingest RTMP and publish to RTMP server\n"
- "Usage: %s <-i in_rtmp_url> <-y out_rtmp_url> [-v verbose]\n"
- " in_rtmp_url input rtmp url, ingest from this url.\n"
- " out_rtmp_url output rtmp url, publish to this url.\n"
- " verbose output verbose log.\n"
- "For example:\n"
- " %s -i rtmp://127.0.0.1/live/livestream -y rtmp://127.0.0.1/live/demo\n"
- " %s -i rtmp://127.0.0.1/live/livestream -y rtmp://127.0.0.1/live/demo -v verbose\n",
- argv[0], argv[0], argv[0]);
- exit(-1);
- }
-
- // fill the options for mac
- for (opt = 0; opt < argc - 1; opt++) {
- // ignore all options except -i and -y.
- char* p = argv[opt];
-
- // only accept -x
- if (p[0] != '-' || p[1] == 0 || p[2] != 0) {
- continue;
- }
-
- // parse according the option name.
- switch (p[1]) {
- case 'i': in_rtmp_url = argv[++opt]; break;
- case 'y': out_rtmp_url = argv[++opt]; break;
- case 'v': verbose=1; opt++; break;
- default: break;
- }
- }
-
- if (!in_rtmp_url) {
- srs_human_trace("input invalid, use -i <input>");
- return -1;
- }
- if (!out_rtmp_url) {
- srs_human_trace("output invalid, use -y <output>");
- return -1;
- }
-
- srs_human_trace("ingest %s to %s, verbose=%d", in_rtmp_url, out_rtmp_url, verbose);
-
- irtmp = srs_rtmp_create(in_rtmp_url);
- ortmp = srs_rtmp_create(out_rtmp_url);
-
- ret = proxy(irtmp, ortmp);
- srs_human_trace("proxy completed");
-
- srs_rtmp_destroy(irtmp);
- srs_rtmp_destroy(ortmp);
-
- return ret;
- }
- int proxy(srs_rtmp_t irtmp, srs_rtmp_t ortmp)
- {
- int ret = 0;
-
- // packet data
- int size;
- char type;
- char* data;
- uint32_t timestamp;
- uint64_t nb_msgs = 0;
-
- if ((ret = connect_ic(irtmp)) != 0) {
- return ret;
- }
- if ((ret = connect_oc(ortmp)) != 0) {
- return ret;
- }
-
- if (verbose) {
- srs_human_trace("start proxy RTMP stream");
- } else {
- srs_human_verbose("start proxy RTMP stream");
- }
-
- char buffer[1024];
- for (;;) {
- if ((ret = srs_rtmp_read_packet(irtmp, &type, ×tamp, &data, &size)) != 0) {
- srs_human_trace("irtmp get packet failed. ret=%d", ret);
- return ret;
- }
-
- if (!srs_utils_flv_tag_is_ok(type)) {
- if (verbose) {
- srs_human_trace("ignore invalid flv tag=%d, dts=%d, %d bytes", type, timestamp, size);
- } else {
- srs_human_verbose("ignore invalid flv tag=%d, dts=%d, %d bytes", type, timestamp, size);
- }
- free(data);
- continue;
- }
-
- if (verbose || ((nb_msgs++ % PITHY_PRINT_EVERY_MSGS) == 0 && nb_msgs > 10)) {
- if ((ret = srs_human_format_rtmp_packet(buffer, sizeof(buffer), type, timestamp, data, size)) != 0) {
- srs_human_trace("print packet failed. ret=%d", ret);
- return ret;
- }
- srs_human_trace("%s", buffer);
- }
-
- if ((ret = srs_rtmp_write_packet(ortmp, type, timestamp, data, size)) != 0) {
- srs_human_trace("irtmp get packet failed. ret=%d", ret);
- return ret;
- }
-
- if (verbose) {
- srs_human_trace("ortmp sent packet: type=%s, time=%d, size=%d",
- srs_human_flv_tag_type2string(type), timestamp, size);
- } else {
- srs_human_verbose("ortmp sent packet: type=%s, time=%d, size=%d",
- srs_human_flv_tag_type2string(type), timestamp, size);
- }
- }
-
- return ret;
- }
- int connect_ic(srs_rtmp_t irtmp)
- {
- int ret = 0;
-
- // srs debug info.
- char* ip = NULL;
- char* sig = NULL;
- int pid = 0, cid = 0;
- int major = 0, minor = 0, revision= 0, build = 0;
-
- if ((ret = srs_rtmp_handshake(irtmp)) != 0) {
- srs_human_trace("irtmp simple handshake failed. ret=%d", ret);
- return ret;
- }
- if (verbose) {
- srs_human_trace("irtmp simple handshake success");
- } else {
- srs_human_verbose("irtmp simple handshake success");
- }
-
- if (srs_rtmp_connect_app(irtmp) != 0) {
- srs_human_trace("irtmp connect vhost/app failed. ret=%d", ret);
- return ret;
- }
-
- if ((ret = srs_rtmp_get_server_sig(irtmp, &sig)) != 0) {
- srs_human_trace("Retrieve server ID failed, ret=%d", ret);
- return ret;
- }
- if ((ret = srs_rtmp_get_server_id(irtmp, &ip, &pid, &cid)) != 0) {
- srs_human_trace("Retrieve server ID failed, ret=%d", ret);
- return ret;
- }
- if ((ret = srs_rtmp_get_server_version(irtmp, &major, &minor, &revision, &build)) != 0) {
- srs_human_trace("Retrieve server version failed, ret=%d", ret);
- return ret;
- }
- srs_human_trace("irtmp connect ok, ip=%s, server=%s/%d.%d.%d.%d, pid=%d, cid=%d",
- ip, sig, major, minor, revision, build, pid, cid);
-
- if ((ret = srs_rtmp_play_stream(irtmp)) != 0) {
- srs_human_trace("irtmp play stream failed. ret=%d", ret);
- return ret;
- }
- if (verbose) {
- srs_human_trace("irtmp play stream success");
- } else {
- srs_human_verbose("irtmp play stream success");
- }
-
- return ret;
- }
- int connect_oc(srs_rtmp_t ortmp)
- {
- int ret = 0;
-
- // srs debug info.
- char* ip = NULL;
- char* sig = NULL;
- int pid = 0, cid = 0;
- int major = 0, minor = 0, revision= 0, build = 0;
-
- if ((ret = srs_rtmp_handshake(ortmp)) != 0) {
- srs_human_trace("ortmp simple handshake failed. ret=%d", ret);
- return ret;
- }
- if (verbose) {
- srs_human_trace("ortmp simple handshake success");
- } else {
- srs_human_verbose("ortmp simple handshake success");
- }
-
- if (srs_rtmp_connect_app(ortmp) != 0) {
- srs_human_trace("ortmp connect vhost/app failed. ret=%d", ret);
- return ret;
- }
-
- if ((ret = srs_rtmp_get_server_sig(ortmp, &sig)) != 0) {
- srs_human_trace("Retrieve server ID failed, ret=%d", ret);
- return ret;
- }
- if ((ret = srs_rtmp_get_server_id(ortmp, &ip, &pid, &cid)) != 0) {
- srs_human_trace("Retrieve server ID failed, ret=%d", ret);
- return ret;
- }
- if ((ret = srs_rtmp_get_server_version(ortmp, &major, &minor, &revision, &build)) != 0) {
- srs_human_trace("Retrieve server version failed, ret=%d", ret);
- return ret;
- }
- srs_human_trace("ortmp connect ok, ip=%s, server=%s/%d.%d.%d.%d, pid=%d, cid=%d",
- ip, sig, major, minor, revision, build, pid, cid);
-
- if ((ret = srs_rtmp_publish_stream(ortmp)) != 0) {
- srs_human_trace("ortmp publish stream failed. ret=%d", ret);
- return ret;
- }
- if (verbose) {
- srs_human_trace("ortmp publish stream success");
- } else {
- srs_human_verbose("ortmp publish stream success");
- }
-
- return ret;
- }
|