tools/aviocat.c
23e57d16
 /*
  * Copyright (c) 2012 Martin Storsjo
  *
d814a839
  * This file is part of FFmpeg.
23e57d16
  *
d814a839
  * FFmpeg is free software; you can redistribute it and/or
23e57d16
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
d814a839
  * FFmpeg is distributed in the hope that it will be useful,
23e57d16
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
d814a839
  * License along with FFmpeg; if not, write to the Free Software
23e57d16
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <stdio.h>
7ba34575
 #include <stdlib.h>
4e81b5f5
 
896bb0d7
 #include "libavutil/time.h"
23e57d16
 #include "libavformat/avformat.h"
 
 static int usage(const char *argv0, int ret)
 {
2b4c1a0f
     fprintf(stderr, "%s [-b bytespersec] [-d duration] [-oi <options>] [-oo <options>] [-v] input_url output_url\n", argv0);
052b9785
     fprintf(stderr, "<options>: AVOptions expressed as key=value, :-separated\n");
23e57d16
     return ret;
 }
 
 int main(int argc, char **argv)
 {
2b4c1a0f
     int bps = 0, duration = 0, verbose = 0, ret, i;
23e57d16
     const char *input_url = NULL, *output_url = NULL;
     int64_t stream_pos = 0;
     int64_t start_time;
     char errbuf[50];
     AVIOContext *input, *output;
052b9785
     AVDictionary *in_opts = NULL;
     AVDictionary *out_opts = NULL;
23e57d16
 
     avformat_network_init();
 
     for (i = 1; i < argc; i++) {
03f2de58
         if (!strcmp(argv[i], "-b") && i + 1 < argc) {
23e57d16
             bps = atoi(argv[i + 1]);
             i++;
87acd33c
         } else if (!strcmp(argv[i], "-d") && i + 1 < argc) {
             duration = atoi(argv[i + 1]);
             i++;
052b9785
         } else if (!strcmp(argv[i], "-oi") && i + 1 < argc) {
             if (av_dict_parse_string(&in_opts, argv[i + 1], "=", ":", 0) < 0) {
                 fprintf(stderr, "Cannot parse option string %s\n",
                         argv[i + 1]);
                 return usage(argv[0], 1);
             }
             i++;
         } else if (!strcmp(argv[i], "-oo") && i + 1 < argc) {
             if (av_dict_parse_string(&out_opts, argv[i + 1], "=", ":", 0) < 0) {
                 fprintf(stderr, "Cannot parse option string %s\n",
                         argv[i + 1]);
                 return usage(argv[0], 1);
             }
             i++;
2b4c1a0f
         } else if (!strcmp(argv[i], "-v")) {
             verbose = 1;
23e57d16
         } else if (!input_url) {
             input_url = argv[i];
         } else if (!output_url) {
             output_url = argv[i];
         } else {
             return usage(argv[0], 1);
         }
     }
     if (!output_url)
         return usage(argv[0], 1);
 
052b9785
     ret = avio_open2(&input, input_url, AVIO_FLAG_READ, NULL, &in_opts);
23e57d16
     if (ret) {
         av_strerror(ret, errbuf, sizeof(errbuf));
         fprintf(stderr, "Unable to open %s: %s\n", input_url, errbuf);
         return 1;
     }
2b4c1a0f
     if (verbose) {
         int64_t size = avio_seek(input, 0, AVSEEK_SIZE);
         if (size >= 0) {
             fprintf(stderr, "aviocat: input size: %"PRId64"\n", size);
         } else {
             fprintf(stderr, "aviocat: input size: unknown\n");
         }
     }
87acd33c
     if (duration && !bps) {
         int64_t size = avio_size(input);
         if (size < 0) {
             av_strerror(ret, errbuf, sizeof(errbuf));
             fprintf(stderr, "Unable to get size of %s: %s\n", input_url, errbuf);
             goto fail;
         }
         bps = size / duration;
     }
052b9785
     ret = avio_open2(&output, output_url, AVIO_FLAG_WRITE, NULL, &out_opts);
23e57d16
     if (ret) {
         av_strerror(ret, errbuf, sizeof(errbuf));
         fprintf(stderr, "Unable to open %s: %s\n", output_url, errbuf);
         goto fail;
     }
 
41120e6e
     start_time = av_gettime_relative();
23e57d16
     while (1) {
         uint8_t buf[1024];
         int n;
         n = avio_read(input, buf, sizeof(buf));
         if (n <= 0)
             break;
         avio_write(output, buf, n);
f19fbfbd
         if (output->error) {
             av_strerror(output->error, errbuf, sizeof(errbuf));
             fprintf(stderr, "Unable to write %s: %s\n", output_url, errbuf);
             break;
         }
23e57d16
         stream_pos += n;
         if (bps) {
             avio_flush(output);
41120e6e
             while ((av_gettime_relative() - start_time) * bps / AV_TIME_BASE < stream_pos)
896bb0d7
                 av_usleep(50 * 1000);
23e57d16
         }
     }
 
6a73f3bb
     avio_flush(output);
23e57d16
     avio_close(output);
4e81b5f5
 
23e57d16
 fail:
052b9785
     av_dict_free(&in_opts);
     av_dict_free(&out_opts);
23e57d16
     avio_close(input);
     avformat_network_deinit();
     return ret ? 1 : 0;
 }