You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

220 lines
7.5KB

  1. /*
  2. * Icecast protocol for FFmpeg
  3. * Copyright (c) 2014 Marvin Scholz
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avstring.h"
  22. #include "libavutil/bprint.h"
  23. #include "libavutil/opt.h"
  24. #include "avformat.h"
  25. #include "network.h"
  26. typedef struct IcecastContext {
  27. const AVClass *class;
  28. URLContext *hd;
  29. int send_started;
  30. char *user;
  31. // Options
  32. char *content_type;
  33. char *description;
  34. char *genre;
  35. int legacy_icecast;
  36. char *name;
  37. char *pass;
  38. int public;
  39. char *url;
  40. char *user_agent;
  41. } IcecastContext;
  42. #define DEFAULT_ICE_USER "source"
  43. #define NOT_EMPTY(s) (s && s[0])
  44. #define OFFSET(x) offsetof(IcecastContext, x)
  45. #define E AV_OPT_FLAG_ENCODING_PARAM
  46. static const AVOption options[] = {
  47. { "ice_genre", "set stream genre", OFFSET(genre), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  48. { "ice_name", "set stream description", OFFSET(name), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  49. { "ice_description", "set stream description", OFFSET(description), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  50. { "ice_url", "set stream website", OFFSET(url), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  51. { "ice_public", "set if stream is public", OFFSET(public), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E },
  52. { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  53. { "password", "set password", OFFSET(pass), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  54. { "content_type", "set content-type, MUST be set if not audio/mpeg", OFFSET(content_type), AV_OPT_TYPE_STRING, { 0 }, 0, 0, E },
  55. { "legacy_icecast", "use legacy SOURCE method, for Icecast < v2.4", OFFSET(legacy_icecast), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E },
  56. { NULL }
  57. };
  58. static void cat_header(AVBPrint *bp, const char key[], const char value[])
  59. {
  60. if (NOT_EMPTY(value))
  61. av_bprintf(bp, "%s: %s\r\n", key, value);
  62. }
  63. static int icecast_close(URLContext *h)
  64. {
  65. IcecastContext *s = h->priv_data;
  66. if (s->hd)
  67. ffurl_close(s->hd);
  68. return 0;
  69. }
  70. static int icecast_open(URLContext *h, const char *uri, int flags)
  71. {
  72. IcecastContext *s = h->priv_data;
  73. // Dict to set options that we pass to the HTTP protocol
  74. AVDictionary *opt_dict = NULL;
  75. // URI part variables
  76. char h_url[1024], host[1024], auth[1024], path[1024];
  77. char *headers = NULL, *user = NULL;
  78. int port, ret;
  79. AVBPrint bp;
  80. if (flags & AVIO_FLAG_READ)
  81. return AVERROR(ENOSYS);
  82. av_bprint_init(&bp, 0, 1);
  83. // Build header strings
  84. cat_header(&bp, "Ice-Name", s->name);
  85. cat_header(&bp, "Ice-Description", s->description);
  86. cat_header(&bp, "Ice-URL", s->url);
  87. cat_header(&bp, "Ice-Genre", s->genre);
  88. cat_header(&bp, "Ice-Public", s->public ? "1" : "0");
  89. if (!av_bprint_is_complete(&bp)) {
  90. ret = AVERROR(ENOMEM);
  91. goto cleanup;
  92. }
  93. av_bprint_finalize(&bp, &headers);
  94. // Set options
  95. av_dict_set(&opt_dict, "method", s->legacy_icecast ? "SOURCE" : "PUT", 0);
  96. av_dict_set(&opt_dict, "auth_type", "basic", 0);
  97. av_dict_set(&opt_dict, "headers", headers, 0);
  98. av_dict_set(&opt_dict, "chunked_post", "0", 0);
  99. av_dict_set(&opt_dict, "send_expect_100", s->legacy_icecast ? "0" : "1", 0);
  100. if (NOT_EMPTY(s->content_type))
  101. av_dict_set(&opt_dict, "content_type", s->content_type, 0);
  102. else
  103. av_dict_set(&opt_dict, "content_type", "audio/mpeg", 0);
  104. if (NOT_EMPTY(s->user_agent))
  105. av_dict_set(&opt_dict, "user_agent", s->user_agent, 0);
  106. // Parse URI
  107. av_url_split(NULL, 0, auth, sizeof(auth), host, sizeof(host),
  108. &port, path, sizeof(path), uri);
  109. // Check for auth data in URI
  110. if (auth[0]) {
  111. char *sep = strchr(auth, ':');
  112. if (sep) {
  113. *sep = 0;
  114. sep++;
  115. if (s->pass) {
  116. av_free(s->pass);
  117. av_log(h, AV_LOG_WARNING, "Overwriting -password <pass> with URI password!\n");
  118. }
  119. if (!(s->pass = av_strdup(sep))) {
  120. ret = AVERROR(ENOMEM);
  121. goto cleanup;
  122. }
  123. }
  124. if (!(user = av_strdup(auth))) {
  125. ret = AVERROR(ENOMEM);
  126. goto cleanup;
  127. }
  128. }
  129. // Build new authstring
  130. snprintf(auth, sizeof(auth),
  131. "%s:%s",
  132. user ? user : DEFAULT_ICE_USER,
  133. s->pass ? s->pass : "");
  134. // Check for mountpoint (path)
  135. if (!path[0] || strcmp(path, "/") == 0) {
  136. av_log(h, AV_LOG_ERROR, "No mountpoint (path) specified!\n");
  137. ret = AVERROR(EIO);
  138. goto cleanup;
  139. }
  140. // Build new URI for passing to http protocol
  141. ff_url_join(h_url, sizeof(h_url), "http", auth, host, port, "%s", path);
  142. // Finally open http proto handler
  143. ret = ffurl_open(&s->hd, h_url, AVIO_FLAG_READ_WRITE, NULL, &opt_dict);
  144. cleanup:
  145. av_freep(&user);
  146. av_freep(&headers);
  147. av_dict_free(&opt_dict);
  148. return ret;
  149. }
  150. static int icecast_write(URLContext *h, const uint8_t *buf, int size)
  151. {
  152. IcecastContext *s = h->priv_data;
  153. if (!s->send_started) {
  154. s->send_started = 1;
  155. if (!s->content_type && size >= 8) {
  156. static const uint8_t oggs[4] = { 0x4F, 0x67, 0x67, 0x53 };
  157. static const uint8_t webm[4] = { 0x1A, 0x45, 0xDF, 0xA3 };
  158. static const uint8_t opus[8] = { 0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64 };
  159. if (memcmp(buf, oggs, sizeof(oggs)) == 0) {
  160. av_log(h, AV_LOG_WARNING, "Streaming Ogg but appropriate content type NOT set!\n");
  161. av_log(h, AV_LOG_WARNING, "Set it with -content_type application/ogg\n");
  162. } else if (memcmp(buf, opus, sizeof(opus)) == 0) {
  163. av_log(h, AV_LOG_WARNING, "Streaming Opus but appropriate content type NOT set!\n");
  164. av_log(h, AV_LOG_WARNING, "Set it with -content_type audio/ogg\n");
  165. } else if (memcmp(buf, webm, sizeof(webm)) == 0) {
  166. av_log(h, AV_LOG_WARNING, "Streaming WebM but appropriate content type NOT set!\n");
  167. av_log(h, AV_LOG_WARNING, "Set it with -content_type video/webm\n");
  168. } else {
  169. av_log(h, AV_LOG_WARNING, "It seems you are streaming an unsupported format.\n");
  170. av_log(h, AV_LOG_WARNING, "It might work, but is not officially supported in Icecast!\n");
  171. }
  172. }
  173. }
  174. return ffurl_write(s->hd, buf, size);
  175. }
  176. static const AVClass icecast_context_class = {
  177. .class_name = "icecast",
  178. .item_name = av_default_item_name,
  179. .option = options,
  180. .version = LIBAVUTIL_VERSION_INT,
  181. };
  182. URLProtocol ff_icecast_protocol = {
  183. .name = "icecast",
  184. .url_open = icecast_open,
  185. .url_write = icecast_write,
  186. .url_close = icecast_close,
  187. .priv_data_size = sizeof(IcecastContext),
  188. .priv_data_class = &icecast_context_class,
  189. .flags = URL_PROTOCOL_FLAG_NETWORK,
  190. };