2015-05-28 23:11:37 -07:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2015 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <obs-module.h>
|
|
|
|
#include <obs-avc.h>
|
|
|
|
#include <util/dstr.h>
|
|
|
|
#include <util/pipe.h>
|
2016-06-11 11:42:29 -07:00
|
|
|
#include <util/threading.h>
|
2015-05-28 23:11:37 -07:00
|
|
|
#include "ffmpeg-mux/ffmpeg-mux.h"
|
|
|
|
|
2015-11-23 06:28:25 -08:00
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
|
2015-05-28 23:11:37 -07:00
|
|
|
#define do_log(level, format, ...) \
|
|
|
|
blog(level, "[ffmpeg muxer: '%s'] " format, \
|
|
|
|
obs_output_get_name(stream->output), ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define warn(format, ...) do_log(LOG_WARNING, format, ##__VA_ARGS__)
|
|
|
|
#define info(format, ...) do_log(LOG_INFO, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
struct ffmpeg_muxer {
|
|
|
|
obs_output_t *output;
|
|
|
|
os_process_pipe_t *pipe;
|
2016-06-11 11:42:29 -07:00
|
|
|
int64_t stop_ts;
|
2015-05-28 23:11:37 -07:00
|
|
|
struct dstr path;
|
|
|
|
bool sent_headers;
|
2016-06-11 11:42:29 -07:00
|
|
|
volatile bool active;
|
|
|
|
volatile bool stopping;
|
|
|
|
volatile bool capturing;
|
2015-05-28 23:11:37 -07:00
|
|
|
};
|
|
|
|
|
2015-09-16 01:30:51 -07:00
|
|
|
static const char *ffmpeg_mux_getname(void *unused)
|
2015-05-28 23:11:37 -07:00
|
|
|
{
|
2015-09-16 01:30:51 -07:00
|
|
|
UNUSED_PARAMETER(unused);
|
2015-05-28 23:11:37 -07:00
|
|
|
return obs_module_text("FFmpegMuxer");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ffmpeg_mux_destroy(void *data)
|
|
|
|
{
|
|
|
|
struct ffmpeg_muxer *stream = data;
|
|
|
|
os_process_pipe_destroy(stream->pipe);
|
|
|
|
dstr_free(&stream->path);
|
|
|
|
bfree(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *ffmpeg_mux_create(obs_data_t *settings, obs_output_t *output)
|
|
|
|
{
|
|
|
|
struct ffmpeg_muxer *stream = bzalloc(sizeof(*stream));
|
|
|
|
stream->output = output;
|
|
|
|
|
|
|
|
UNUSED_PARAMETER(settings);
|
|
|
|
return stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define FFMPEG_MUX "ffmpeg-mux64.exe"
|
|
|
|
#else
|
|
|
|
#define FFMPEG_MUX "ffmpeg-mux32.exe"
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define FFMPEG_MUX "ffmpeg-mux"
|
|
|
|
#endif
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
static inline bool capturing(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
return os_atomic_load_bool(&stream->capturing);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool stopping(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
return os_atomic_load_bool(&stream->stopping);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool active(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
return os_atomic_load_bool(&stream->active);
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:11:37 -07:00
|
|
|
/* TODO: allow codecs other than h264 whenever we start using them */
|
|
|
|
|
|
|
|
static void add_video_encoder_params(struct ffmpeg_muxer *stream,
|
|
|
|
struct dstr *cmd, obs_encoder_t *vencoder)
|
|
|
|
{
|
|
|
|
obs_data_t *settings = obs_encoder_get_settings(vencoder);
|
|
|
|
int bitrate = (int)obs_data_get_int(settings, "bitrate");
|
|
|
|
video_t *video = obs_get_video();
|
|
|
|
const struct video_output_info *info = video_output_get_info(video);
|
|
|
|
|
|
|
|
obs_data_release(settings);
|
|
|
|
|
|
|
|
dstr_catf(cmd, "%s %d %d %d %d %d ",
|
|
|
|
"h264",
|
|
|
|
bitrate,
|
|
|
|
obs_output_get_width(stream->output),
|
|
|
|
obs_output_get_height(stream->output),
|
|
|
|
(int)info->fps_num,
|
|
|
|
(int)info->fps_den);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_audio_encoder_params(struct dstr *cmd, obs_encoder_t *aencoder)
|
|
|
|
{
|
|
|
|
obs_data_t *settings = obs_encoder_get_settings(aencoder);
|
|
|
|
int bitrate = (int)obs_data_get_int(settings, "bitrate");
|
|
|
|
audio_t *audio = obs_get_audio();
|
|
|
|
struct dstr name = {0};
|
|
|
|
|
|
|
|
obs_data_release(settings);
|
|
|
|
|
|
|
|
dstr_copy(&name, obs_encoder_get_name(aencoder));
|
|
|
|
dstr_replace(&name, "\"", "\"\"");
|
|
|
|
|
|
|
|
dstr_catf(cmd, "\"%s\" %d %d %d ",
|
|
|
|
name.array,
|
|
|
|
bitrate,
|
2015-07-09 10:43:32 -07:00
|
|
|
(int)obs_encoder_get_sample_rate(aencoder),
|
2015-05-28 23:11:37 -07:00
|
|
|
(int)audio_output_get_channels(audio));
|
|
|
|
|
|
|
|
dstr_free(&name);
|
|
|
|
}
|
|
|
|
|
2015-11-23 06:28:25 -08:00
|
|
|
static void log_muxer_params(struct ffmpeg_muxer *stream, const char *settings)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
AVDictionary *dict = NULL;
|
|
|
|
if ((ret = av_dict_parse_string(&dict, settings, "=", " ", 0))) {
|
|
|
|
warn("Failed to parse muxer settings: %s\n%s",
|
|
|
|
av_err2str(ret), settings);
|
|
|
|
|
|
|
|
av_dict_free(&dict);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (av_dict_count(dict) > 0) {
|
|
|
|
struct dstr str = {0};
|
|
|
|
|
|
|
|
AVDictionaryEntry *entry = NULL;
|
|
|
|
while ((entry = av_dict_get(dict, "", entry,
|
|
|
|
AV_DICT_IGNORE_SUFFIX)))
|
|
|
|
dstr_catf(&str, "\n\t%s=%s", entry->key, entry->value);
|
|
|
|
|
|
|
|
info("Using muxer settings:%s", str.array);
|
|
|
|
dstr_free(&str);
|
|
|
|
}
|
|
|
|
|
|
|
|
av_dict_free(&dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_muxer_params(struct dstr *cmd, struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
obs_data_t *settings = obs_output_get_settings(stream->output);
|
|
|
|
struct dstr mux = {0};
|
|
|
|
|
|
|
|
dstr_copy(&mux, obs_data_get_string(settings, "muxer_settings"));
|
|
|
|
|
|
|
|
log_muxer_params(stream, mux.array);
|
|
|
|
|
|
|
|
dstr_replace(&mux, "\"", "\\\"");
|
|
|
|
obs_data_release(settings);
|
|
|
|
|
|
|
|
dstr_catf(cmd, "\"%s\" ", mux.array ? mux.array : "");
|
|
|
|
|
|
|
|
dstr_free(&mux);
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:11:37 -07:00
|
|
|
static void build_command_line(struct ffmpeg_muxer *stream, struct dstr *cmd)
|
|
|
|
{
|
|
|
|
obs_encoder_t *vencoder = obs_output_get_video_encoder(stream->output);
|
|
|
|
obs_encoder_t *aencoders[MAX_AUDIO_MIXES];
|
|
|
|
int num_tracks = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
obs_encoder_t *aencoder = obs_output_get_audio_encoder(
|
|
|
|
stream->output, num_tracks);
|
|
|
|
if (!aencoder)
|
|
|
|
break;
|
|
|
|
|
|
|
|
aencoders[num_tracks] = aencoder;
|
|
|
|
num_tracks++;
|
|
|
|
}
|
|
|
|
|
|
|
|
dstr_init_move_array(cmd, obs_module_file(FFMPEG_MUX));
|
|
|
|
dstr_insert_ch(cmd, 0, '\"');
|
|
|
|
dstr_cat(cmd, "\" \"");
|
|
|
|
dstr_cat_dstr(cmd, &stream->path);
|
|
|
|
dstr_catf(cmd, "\" %d %d ", vencoder ? 1 : 0, num_tracks);
|
|
|
|
|
|
|
|
if (vencoder)
|
|
|
|
add_video_encoder_params(stream, cmd, vencoder);
|
|
|
|
|
|
|
|
if (num_tracks) {
|
|
|
|
dstr_cat(cmd, "aac ");
|
|
|
|
|
|
|
|
for (int i = 0; i < num_tracks; i++) {
|
|
|
|
add_audio_encoder_params(cmd, aencoders[i]);
|
|
|
|
}
|
|
|
|
}
|
2015-11-23 06:28:25 -08:00
|
|
|
|
|
|
|
add_muxer_params(cmd, stream);
|
2015-05-28 23:11:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool ffmpeg_mux_start(void *data)
|
|
|
|
{
|
|
|
|
struct ffmpeg_muxer *stream = data;
|
|
|
|
obs_data_t *settings;
|
|
|
|
struct dstr cmd;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
if (!obs_output_can_begin_data_capture(stream->output, 0))
|
|
|
|
return false;
|
|
|
|
if (!obs_output_initialize_encoders(stream->output, 0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
settings = obs_output_get_settings(stream->output);
|
|
|
|
path = obs_data_get_string(settings, "path");
|
|
|
|
dstr_copy(&stream->path, path);
|
|
|
|
dstr_replace(&stream->path, "\"", "\"\"");
|
|
|
|
obs_data_release(settings);
|
|
|
|
|
|
|
|
build_command_line(stream, &cmd);
|
|
|
|
stream->pipe = os_process_pipe_create(cmd.array, "w");
|
|
|
|
dstr_free(&cmd);
|
|
|
|
|
|
|
|
if (!stream->pipe) {
|
|
|
|
warn("Failed to create process pipe");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write headers and start capture */
|
2016-06-11 11:42:29 -07:00
|
|
|
os_atomic_set_bool(&stream->active, true);
|
|
|
|
os_atomic_set_bool(&stream->capturing, true);
|
2015-05-28 23:11:37 -07:00
|
|
|
obs_output_begin_data_capture(stream->output, 0);
|
|
|
|
|
|
|
|
info("Writing file '%s'...", stream->path.array);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int deactivate(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
if (active(stream)) {
|
2015-05-28 23:11:37 -07:00
|
|
|
ret = os_process_pipe_destroy(stream->pipe);
|
|
|
|
stream->pipe = NULL;
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
os_atomic_set_bool(&stream->active, false);
|
|
|
|
os_atomic_set_bool(&stream->sent_headers, false);
|
2015-05-28 23:11:37 -07:00
|
|
|
|
|
|
|
info("Output of file '%s' stopped", stream->path.array);
|
|
|
|
}
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
if (stopping(stream))
|
|
|
|
obs_output_end_data_capture(stream->output);
|
|
|
|
|
|
|
|
os_atomic_set_bool(&stream->stopping, false);
|
2015-05-28 23:11:37 -07:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
static void ffmpeg_mux_stop(void *data, uint64_t ts)
|
2015-05-28 23:11:37 -07:00
|
|
|
{
|
|
|
|
struct ffmpeg_muxer *stream = data;
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
if (capturing(stream)) {
|
|
|
|
stream->stop_ts = (int64_t)ts / 1000LL;
|
|
|
|
os_atomic_set_bool(&stream->stopping, true);
|
|
|
|
os_atomic_set_bool(&stream->capturing, false);
|
2015-05-28 23:11:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void signal_failure(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
int ret = deactivate(stream);
|
|
|
|
int code;
|
|
|
|
|
|
|
|
switch (ret) {
|
|
|
|
case FFM_UNSUPPORTED: code = OBS_OUTPUT_UNSUPPORTED; break;
|
|
|
|
default: code = OBS_OUTPUT_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
obs_output_signal_stop(stream->output, code);
|
2016-06-11 11:42:29 -07:00
|
|
|
os_atomic_set_bool(&stream->capturing, false);
|
2015-05-28 23:11:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool write_packet(struct ffmpeg_muxer *stream,
|
|
|
|
struct encoder_packet *packet)
|
|
|
|
{
|
|
|
|
bool is_video = packet->type == OBS_ENCODER_VIDEO;
|
|
|
|
size_t ret;
|
|
|
|
|
|
|
|
struct ffm_packet_info info = {
|
|
|
|
.pts = packet->pts,
|
|
|
|
.dts = packet->dts,
|
|
|
|
.size = (uint32_t)packet->size,
|
|
|
|
.index = (int)packet->track_idx,
|
|
|
|
.type = is_video ? FFM_PACKET_VIDEO : FFM_PACKET_AUDIO,
|
|
|
|
.keyframe = packet->keyframe
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = os_process_pipe_write(stream->pipe, (const uint8_t*)&info,
|
|
|
|
sizeof(info));
|
|
|
|
if (ret != sizeof(info)) {
|
|
|
|
warn("os_process_pipe_write for info structure failed");
|
|
|
|
signal_failure(stream);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = os_process_pipe_write(stream->pipe, packet->data, packet->size);
|
|
|
|
if (ret != packet->size) {
|
|
|
|
warn("os_process_pipe_write for packet data failed");
|
|
|
|
signal_failure(stream);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool send_audio_headers(struct ffmpeg_muxer *stream,
|
|
|
|
obs_encoder_t *aencoder, size_t idx)
|
|
|
|
{
|
|
|
|
struct encoder_packet packet = {
|
|
|
|
.type = OBS_ENCODER_AUDIO,
|
|
|
|
.timebase_den = 1,
|
|
|
|
.track_idx = idx
|
|
|
|
};
|
|
|
|
|
|
|
|
obs_encoder_get_extra_data(aencoder, &packet.data, &packet.size);
|
|
|
|
return write_packet(stream, &packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool send_video_headers(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
obs_encoder_t *vencoder = obs_output_get_video_encoder(stream->output);
|
|
|
|
|
|
|
|
struct encoder_packet packet = {
|
|
|
|
.type = OBS_ENCODER_VIDEO,
|
|
|
|
.timebase_den = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
obs_encoder_get_extra_data(vencoder, &packet.data, &packet.size);
|
|
|
|
return write_packet(stream, &packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool send_headers(struct ffmpeg_muxer *stream)
|
|
|
|
{
|
|
|
|
obs_encoder_t *aencoder;
|
|
|
|
size_t idx = 0;
|
|
|
|
|
|
|
|
if (!send_video_headers(stream))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
do {
|
|
|
|
aencoder = obs_output_get_audio_encoder(stream->output, idx);
|
|
|
|
if (aencoder) {
|
|
|
|
if (!send_audio_headers(stream, aencoder, idx)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
} while (aencoder);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ffmpeg_mux_data(void *data, struct encoder_packet *packet)
|
|
|
|
{
|
|
|
|
struct ffmpeg_muxer *stream = data;
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
if (!active(stream))
|
2015-05-28 23:11:37 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!stream->sent_headers) {
|
|
|
|
if (!send_headers(stream))
|
|
|
|
return;
|
|
|
|
|
|
|
|
stream->sent_headers = true;
|
|
|
|
}
|
|
|
|
|
2016-06-11 11:42:29 -07:00
|
|
|
if (stopping(stream)) {
|
|
|
|
if (packet->sys_dts_usec >= stream->stop_ts) {
|
|
|
|
deactivate(stream);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-28 23:11:37 -07:00
|
|
|
write_packet(stream, packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
static obs_properties_t *ffmpeg_mux_properties(void *unused)
|
|
|
|
{
|
|
|
|
UNUSED_PARAMETER(unused);
|
|
|
|
|
|
|
|
obs_properties_t *props = obs_properties_create();
|
|
|
|
|
|
|
|
obs_properties_add_text(props, "path",
|
|
|
|
obs_module_text("FilePath"),
|
|
|
|
OBS_TEXT_DEFAULT);
|
|
|
|
return props;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct obs_output_info ffmpeg_muxer = {
|
|
|
|
.id = "ffmpeg_muxer",
|
|
|
|
.flags = OBS_OUTPUT_AV |
|
|
|
|
OBS_OUTPUT_ENCODED |
|
|
|
|
OBS_OUTPUT_MULTI_TRACK,
|
|
|
|
.get_name = ffmpeg_mux_getname,
|
|
|
|
.create = ffmpeg_mux_create,
|
|
|
|
.destroy = ffmpeg_mux_destroy,
|
|
|
|
.start = ffmpeg_mux_start,
|
|
|
|
.stop = ffmpeg_mux_stop,
|
|
|
|
.encoded_packet = ffmpeg_mux_data,
|
|
|
|
.get_properties = ffmpeg_mux_properties
|
|
|
|
};
|