2010-05-03 20:52:35 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-05-03 20:52:35 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "transcoder.h"
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
#include <QCoreApplication>
|
2010-08-30 14:43:49 +02:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QtDebug>
|
2010-05-03 20:52:35 +02:00
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
2010-05-03 21:56:21 +02:00
|
|
|
|
|
|
|
using boost::shared_ptr;
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
int Transcoder::JobFinishedEvent::sEventType = -1;
|
|
|
|
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
TranscoderPreset::TranscoderPreset(
|
2010-08-29 17:32:36 +02:00
|
|
|
Song::FileType type,
|
2010-08-22 02:27:14 +02:00
|
|
|
const QString& name,
|
|
|
|
const QString& extension,
|
|
|
|
const QString& codec_mimetype,
|
|
|
|
const QString& muxer_mimetype)
|
2010-08-29 17:32:36 +02:00
|
|
|
: type_(type),
|
|
|
|
name_(name),
|
2010-08-22 02:27:14 +02:00
|
|
|
extension_(extension),
|
|
|
|
codec_mimetype_(codec_mimetype),
|
|
|
|
muxer_mimetype_(muxer_mimetype)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-08 17:36:12 +02:00
|
|
|
GstElement* Transcoder::CreateElement(const QString &factory_name,
|
|
|
|
GstElement *bin,
|
|
|
|
const QString &name) {
|
2010-05-03 20:52:35 +02:00
|
|
|
GstElement* ret = gst_element_factory_make(
|
|
|
|
factory_name.toAscii().constData(),
|
|
|
|
name.isNull() ? factory_name.toAscii().constData() : name.toAscii().constData());
|
|
|
|
|
2010-05-03 21:56:21 +02:00
|
|
|
if (ret && bin)
|
|
|
|
gst_bin_add(GST_BIN(bin), ret);
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-05-08 17:36:12 +02:00
|
|
|
if (!ret) {
|
|
|
|
emit LogLine(
|
|
|
|
tr("Could not create the GStreamer element \"%1\" -"
|
|
|
|
" make sure you have all the required GStreamer plugins installed")
|
|
|
|
.arg(factory_name));
|
|
|
|
}
|
|
|
|
|
2010-05-03 20:52:35 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
struct SuitableElement {
|
|
|
|
SuitableElement(const QString& name = QString(), int rank = 0)
|
|
|
|
: name_(name), rank_(rank) {}
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
bool operator <(const SuitableElement& other) const { return rank_ < other.rank_; }
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
QString name_;
|
|
|
|
int rank_;
|
|
|
|
};
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
GstElement* Transcoder::CreateElementForMimeType(const QString& element_type,
|
|
|
|
const QString& mime_type,
|
|
|
|
GstElement* bin) {
|
|
|
|
if (mime_type.isEmpty())
|
|
|
|
return NULL;
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
// HACK: Force ffmux_mp4 because it doesn't set any useful src caps
|
|
|
|
if (mime_type == "audio/mp4") {
|
|
|
|
LogLine(QString("Using '%1' (rank %2)").arg("ffmux_mp4").arg(-1));
|
|
|
|
return CreateElement("ffmux_mp4", bin);
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
// Keep track of all the suitable elements we find and figure out which
|
|
|
|
// is the best at the end.
|
|
|
|
QList<SuitableElement> suitable_elements_;
|
|
|
|
|
|
|
|
// The caps we're trying to find
|
|
|
|
GstCaps* target_caps = gst_caps_from_string(mime_type.toUtf8().constData());
|
|
|
|
|
|
|
|
GstRegistry* registry = gst_registry_get_default();
|
|
|
|
GList* const features =
|
|
|
|
gst_registry_get_feature_list(registry, GST_TYPE_ELEMENT_FACTORY);
|
|
|
|
|
|
|
|
for (GList* p = features ; p ; p = g_list_next(p)) {
|
|
|
|
GstElementFactory* factory = GST_ELEMENT_FACTORY(p->data);
|
|
|
|
|
|
|
|
// Is this the right type of plugin?
|
|
|
|
if (QString(factory->details.klass).contains(element_type)) {
|
|
|
|
const GList* const templates =
|
|
|
|
gst_element_factory_get_static_pad_templates(factory);
|
|
|
|
for (const GList* p = templates ; p ; p = g_list_next(p)) {
|
|
|
|
// Only interested in source pads
|
|
|
|
GstStaticPadTemplate* pad_template = reinterpret_cast<GstStaticPadTemplate*>(p->data);
|
|
|
|
if (pad_template->direction != GST_PAD_SRC)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Does this pad support the mime type we want?
|
|
|
|
GstCaps* caps = gst_static_pad_template_get_caps(pad_template);
|
|
|
|
GstCaps* intersection = gst_caps_intersect(caps, target_caps);
|
|
|
|
|
|
|
|
if (intersection) {
|
|
|
|
if (!gst_caps_is_empty(intersection)) {
|
|
|
|
int rank = gst_plugin_feature_get_rank(GST_PLUGIN_FEATURE(factory));
|
|
|
|
QString name = GST_PLUGIN_FEATURE_NAME(factory);
|
|
|
|
|
|
|
|
if (name.startsWith("ffmux") || name.startsWith("ffenc"))
|
|
|
|
rank = -1; // ffmpeg usually sucks
|
|
|
|
|
|
|
|
suitable_elements_ << SuitableElement(name, rank);
|
|
|
|
}
|
|
|
|
gst_caps_unref(intersection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_plugin_feature_list_free(features);
|
|
|
|
gst_caps_unref(target_caps);
|
|
|
|
|
|
|
|
if (suitable_elements_.isEmpty())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Sort by rank
|
|
|
|
qSort(suitable_elements_);
|
|
|
|
const SuitableElement& best = suitable_elements_.last();
|
|
|
|
|
|
|
|
LogLine(QString("Using '%1' (rank %2)").arg(best.name_).arg(best.rank_));
|
2010-11-21 00:46:30 +01:00
|
|
|
|
|
|
|
if (best.name_ == "lamemp3enc") {
|
|
|
|
// Special case: we need to add xingmux and id3v2mux to the pipeline when
|
|
|
|
// using lamemp3enc because it doesn't write the VBR or ID3v2 headers itself.
|
2010-11-21 13:03:22 +01:00
|
|
|
// We also turn off VBR since it isn't compatible with some music players.
|
|
|
|
// TODO: Should make settings like these configurable.
|
|
|
|
|
2010-11-21 00:46:30 +01:00
|
|
|
LogLine("Adding xingmux and id3v2mux to the pipeline");
|
|
|
|
|
2010-11-21 13:03:22 +01:00
|
|
|
// Create the bin
|
2010-11-21 00:46:30 +01:00
|
|
|
GstElement* mp3bin = gst_bin_new("mp3bin");
|
|
|
|
gst_bin_add(GST_BIN(bin), mp3bin);
|
|
|
|
|
2010-11-21 13:03:22 +01:00
|
|
|
// Create the elements
|
2010-11-21 00:46:30 +01:00
|
|
|
GstElement* lame = CreateElement("lamemp3enc", mp3bin);
|
|
|
|
GstElement* xing = CreateElement("xingmux", mp3bin);
|
|
|
|
GstElement* id3v2 = CreateElement("id3v2mux", mp3bin);
|
|
|
|
|
2010-11-21 13:03:22 +01:00
|
|
|
if (!lame || !xing || !id3v2) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configure the lame element
|
|
|
|
g_object_set(G_OBJECT(lame), "target", 1, NULL); // 1 == bitrate
|
|
|
|
g_object_set(G_OBJECT(lame), "cbr", true, NULL);
|
|
|
|
|
|
|
|
// Link the elements together
|
2010-11-21 00:46:30 +01:00
|
|
|
gst_element_link_many(lame, xing, id3v2, NULL);
|
|
|
|
|
2010-11-21 13:03:22 +01:00
|
|
|
// Link the bin's ghost pads to the elements on each end
|
2010-11-21 00:46:30 +01:00
|
|
|
GstPad* pad = gst_element_get_static_pad(lame, "sink");
|
|
|
|
gst_element_add_pad(mp3bin, gst_ghost_pad_new("sink", pad));
|
|
|
|
gst_object_unref(GST_OBJECT(pad));
|
|
|
|
|
|
|
|
pad = gst_element_get_static_pad(id3v2, "src");
|
|
|
|
gst_element_add_pad(mp3bin, gst_ghost_pad_new("src", pad));
|
|
|
|
gst_object_unref(GST_OBJECT(pad));
|
|
|
|
|
|
|
|
return mp3bin;
|
|
|
|
} else {
|
|
|
|
return CreateElement(best.name_, bin);
|
|
|
|
}
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
|
|
|
|
Transcoder::JobFinishedEvent::JobFinishedEvent(JobState *state, bool success)
|
|
|
|
: QEvent(QEvent::Type(sEventType)),
|
|
|
|
state_(state),
|
|
|
|
success_(success)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Transcoder::JobState::PostFinished(bool success) {
|
2010-05-08 17:36:12 +02:00
|
|
|
if (success) {
|
|
|
|
emit parent_->LogLine(
|
2010-08-30 14:43:49 +02:00
|
|
|
tr("Successfully written %1").arg(QDir::toNativeSeparators(job_.output)));
|
2010-05-08 17:36:12 +02:00
|
|
|
}
|
2010-08-30 15:03:21 +02:00
|
|
|
|
|
|
|
QCoreApplication::postEvent(parent_, new Transcoder::JobFinishedEvent(this, success));
|
2010-05-06 18:28:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-03 20:52:35 +02:00
|
|
|
Transcoder::Transcoder(QObject* parent)
|
|
|
|
: QObject(parent),
|
2010-05-06 18:28:19 +02:00
|
|
|
max_threads_(QThread::idealThreadCount())
|
2010-05-03 20:52:35 +02:00
|
|
|
{
|
2010-05-06 18:28:19 +02:00
|
|
|
if (JobFinishedEvent::sEventType == -1)
|
|
|
|
JobFinishedEvent::sEventType = QEvent::registerEventType();
|
2010-08-29 17:32:36 +02:00
|
|
|
}
|
2010-05-06 18:28:19 +02:00
|
|
|
|
2010-08-29 17:32:36 +02:00
|
|
|
QList<TranscoderPreset> Transcoder::GetAllPresets() {
|
|
|
|
QList<TranscoderPreset> ret;
|
|
|
|
ret << PresetForFileType(Song::Type_Flac);
|
|
|
|
ret << PresetForFileType(Song::Type_Mp4);
|
|
|
|
ret << PresetForFileType(Song::Type_Mpeg);
|
|
|
|
ret << PresetForFileType(Song::Type_OggVorbis);
|
|
|
|
ret << PresetForFileType(Song::Type_OggFlac);
|
|
|
|
ret << PresetForFileType(Song::Type_OggSpeex);
|
|
|
|
ret << PresetForFileType(Song::Type_Asf);
|
|
|
|
ret << PresetForFileType(Song::Type_Wav);
|
|
|
|
return ret;
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-08-29 16:25:33 +02:00
|
|
|
TranscoderPreset Transcoder::PresetForFileType(Song::FileType type) {
|
|
|
|
switch (type) {
|
|
|
|
case Song::Type_Flac:
|
2010-08-29 18:12:55 +02:00
|
|
|
return TranscoderPreset(type, "Flac", "flac", "audio/x-flac");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_Mp4:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "M4A AAC", "mp4", "audio/mpeg, mpegversion=(int)4", "audio/mp4");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_Mpeg:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "MP3", "mp3", "audio/mpeg, mpegversion=(int)1, layer=(int)3");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_OggVorbis:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "Ogg Vorbis", "ogg", "audio/x-vorbis", "application/ogg");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_OggFlac:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "Ogg Flac", "ogg", "audio/x-flac", "application/ogg");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_OggSpeex:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "Ogg Speex", "spx", "audio/x-speex", "application/ogg");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_Asf:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "Windows Media audio", "wma", "audio/x-wma", "video/x-ms-asf");
|
2010-08-29 16:25:33 +02:00
|
|
|
case Song::Type_Wav:
|
2010-08-29 17:32:36 +02:00
|
|
|
return TranscoderPreset(type, "Wav", "wav", QString(), "audio/x-wav");
|
2010-08-29 16:25:33 +02:00
|
|
|
default:
|
|
|
|
qWarning() << "Unsupported format in Transcoder::PresetForFileType:" << type;
|
|
|
|
return TranscoderPreset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-29 21:22:21 +02:00
|
|
|
Song::FileType Transcoder::PickBestFormat(QList<Song::FileType> supported) {
|
|
|
|
if (supported.isEmpty())
|
|
|
|
return Song::Type_Unknown;
|
|
|
|
|
|
|
|
QList<Song::FileType> best_formats;
|
|
|
|
best_formats << Song::Type_Mpeg;
|
|
|
|
best_formats << Song::Type_OggVorbis;
|
|
|
|
best_formats << Song::Type_Asf;
|
|
|
|
|
|
|
|
foreach (Song::FileType type, best_formats) {
|
|
|
|
if (supported.isEmpty() || supported.contains(type))
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
return supported[0];
|
|
|
|
}
|
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
void Transcoder::AddJob(const QString& input,
|
|
|
|
const TranscoderPreset& preset,
|
|
|
|
const QString& output) {
|
2010-05-03 20:52:35 +02:00
|
|
|
Job job;
|
|
|
|
job.input = input;
|
2010-08-22 02:27:14 +02:00
|
|
|
job.preset = preset;
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-05-03 23:24:43 +02:00
|
|
|
// Use the supplied filename if there was one, otherwise take the file
|
|
|
|
// extension off the input filename and append the correct one.
|
2010-05-03 20:52:35 +02:00
|
|
|
if (!output.isEmpty())
|
|
|
|
job.output = output;
|
|
|
|
else
|
2010-08-22 02:27:14 +02:00
|
|
|
job.output = input.section('.', 0, -2) + '.' + preset.extension_;
|
2010-05-03 20:52:35 +02:00
|
|
|
|
2010-05-03 23:24:43 +02:00
|
|
|
// Never overwrite existing files
|
|
|
|
if (QFile::exists(job.output)) {
|
|
|
|
for (int i=0 ; ; ++i) {
|
|
|
|
QString new_filename = QString("%1.%2").arg(job.output).arg(i);
|
|
|
|
if (!QFile::exists(new_filename)) {
|
|
|
|
job.output = new_filename;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
queued_jobs_ << job;
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Transcoder::Start() {
|
2010-05-08 17:36:12 +02:00
|
|
|
emit LogLine(tr("Transcoding %1 files using %2 threads")
|
|
|
|
.arg(queued_jobs_.count()).arg(max_threads()));
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
forever {
|
|
|
|
StartJobStatus status = MaybeStartNextJob();
|
|
|
|
if (status == AllThreadsBusy || status == NoMoreJobs)
|
|
|
|
break;
|
|
|
|
}
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
Transcoder::StartJobStatus Transcoder::MaybeStartNextJob() {
|
|
|
|
if (current_jobs_.count() >= max_threads())
|
|
|
|
return AllThreadsBusy;
|
|
|
|
if (queued_jobs_.isEmpty()) {
|
2010-05-08 17:36:12 +02:00
|
|
|
if (current_jobs_.isEmpty()) {
|
2010-05-06 18:28:19 +02:00
|
|
|
emit AllJobsComplete();
|
2010-05-08 17:36:12 +02:00
|
|
|
}
|
2010-05-06 18:28:19 +02:00
|
|
|
|
|
|
|
return NoMoreJobs;
|
|
|
|
}
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
Job job = queued_jobs_.takeFirst();
|
2010-08-22 02:27:14 +02:00
|
|
|
if (StartJob(job))
|
|
|
|
return StartedSuccessfully;
|
|
|
|
|
|
|
|
emit JobComplete(job.input, false);
|
|
|
|
return FailedToStart;
|
2010-05-03 21:56:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Transcoder::NewPadCallback(GstElement*, GstPad* pad, gboolean, gpointer data) {
|
|
|
|
JobState* state = reinterpret_cast<JobState*>(data);
|
2010-05-06 18:28:19 +02:00
|
|
|
GstPad* const audiopad = gst_element_get_pad(state->convert_element_, "sink");
|
2010-05-03 21:56:21 +02:00
|
|
|
|
|
|
|
if (GST_PAD_IS_LINKED(audiopad)) {
|
|
|
|
qDebug() << "audiopad is already linked. Unlinking old pad.";
|
|
|
|
gst_pad_unlink(audiopad, GST_PAD_PEER(audiopad));
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_pad_link(pad, audiopad);
|
|
|
|
gst_object_unref(audiopad);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean Transcoder::BusCallback(GstBus*, GstMessage* msg, gpointer data) {
|
|
|
|
JobState* state = reinterpret_cast<JobState*>(data);
|
|
|
|
|
|
|
|
switch (GST_MESSAGE_TYPE(msg)) {
|
|
|
|
case GST_MESSAGE_ERROR:
|
2010-05-08 17:36:12 +02:00
|
|
|
state->ReportError(msg);
|
2010-05-06 18:28:19 +02:00
|
|
|
state->PostFinished(false);
|
2010-05-03 21:56:21 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GST_BUS_DROP;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstBusSyncReply Transcoder::BusCallbackSync(GstBus*, GstMessage* msg, gpointer data) {
|
|
|
|
JobState* state = reinterpret_cast<JobState*>(data);
|
|
|
|
switch (GST_MESSAGE_TYPE(msg)) {
|
|
|
|
case GST_MESSAGE_EOS:
|
2010-05-06 18:28:19 +02:00
|
|
|
state->PostFinished(true);
|
2010-05-03 21:56:21 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GST_MESSAGE_ERROR:
|
2010-05-08 17:36:12 +02:00
|
|
|
state->ReportError(msg);
|
2010-05-06 18:28:19 +02:00
|
|
|
state->PostFinished(false);
|
2010-05-03 21:56:21 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GST_BUS_PASS;
|
|
|
|
}
|
|
|
|
|
2010-05-08 17:36:12 +02:00
|
|
|
void Transcoder::JobState::ReportError(GstMessage* msg) {
|
|
|
|
GError* error;
|
|
|
|
gchar* debugs;
|
|
|
|
|
|
|
|
gst_message_parse_error(msg, &error, &debugs);
|
|
|
|
QString message = QString::fromLocal8Bit(error->message);
|
|
|
|
|
|
|
|
g_error_free(error);
|
|
|
|
free(debugs);
|
|
|
|
|
|
|
|
emit parent_->LogLine(
|
2010-08-30 14:43:49 +02:00
|
|
|
tr("Error processing %1: %2").arg(QDir::toNativeSeparators(job_.input), message));
|
2010-05-08 17:36:12 +02:00
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
bool Transcoder::StartJob(const Job &job) {
|
|
|
|
shared_ptr<JobState> state(new JobState(job, this));
|
|
|
|
|
2010-08-30 14:43:49 +02:00
|
|
|
emit LogLine(tr("Starting %1").arg(QDir::toNativeSeparators(job.input)));
|
2010-05-08 17:36:12 +02:00
|
|
|
|
2010-05-03 22:10:55 +02:00
|
|
|
// Create the pipeline.
|
|
|
|
// This should be a scoped_ptr, but scoped_ptr doesn't support custom
|
|
|
|
// destructors.
|
2010-05-06 18:28:19 +02:00
|
|
|
state->pipeline_.reset(gst_pipeline_new("pipeline"),
|
|
|
|
boost::bind(gst_object_unref, _1));
|
|
|
|
if (!state->pipeline_) return false;
|
2010-05-03 21:56:21 +02:00
|
|
|
|
|
|
|
// Create all the elements
|
2010-05-08 17:36:12 +02:00
|
|
|
GstElement* src = CreateElement("filesrc", state->pipeline_.get());
|
2010-06-17 16:55:50 +02:00
|
|
|
GstElement* decode = CreateElement("decodebin2", state->pipeline_.get());
|
2010-05-08 17:36:12 +02:00
|
|
|
GstElement* convert = CreateElement("audioconvert", state->pipeline_.get());
|
2010-08-22 02:27:14 +02:00
|
|
|
GstElement* codec = CreateElementForMimeType("Codec/Encoder/Audio", job.preset.codec_mimetype_, state->pipeline_.get());
|
|
|
|
GstElement* muxer = CreateElementForMimeType("Codec/Muxer", job.preset.muxer_mimetype_, state->pipeline_.get());
|
2010-05-08 17:36:12 +02:00
|
|
|
GstElement* sink = CreateElement("filesink", state->pipeline_.get());
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-08-22 02:27:14 +02:00
|
|
|
if (!src || !decode || !convert || !sink)
|
2010-05-03 21:56:21 +02:00
|
|
|
return false;
|
|
|
|
|
2010-08-29 16:25:33 +02:00
|
|
|
if (!codec && !job.preset.codec_mimetype_.isEmpty()) {
|
2010-08-22 02:27:14 +02:00
|
|
|
LogLine(tr("Couldn't find an encoder for %1, check you have the correct GStreamer plugins installed"
|
|
|
|
).arg(job.preset.codec_mimetype_));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!muxer && !job.preset.muxer_mimetype_.isEmpty()) {
|
|
|
|
LogLine(tr("Couldn't find a muxer for %1, check you have the correct GStreamer plugins installed"
|
|
|
|
).arg(job.preset.muxer_mimetype_));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-03 21:56:21 +02:00
|
|
|
// Join them together
|
|
|
|
gst_element_link(src, decode);
|
2010-08-29 16:25:33 +02:00
|
|
|
if (codec && muxer)
|
2010-08-22 02:27:14 +02:00
|
|
|
gst_element_link_many(convert, codec, muxer, sink, NULL);
|
2010-08-29 16:25:33 +02:00
|
|
|
else if (codec)
|
2010-08-22 02:27:14 +02:00
|
|
|
gst_element_link_many(convert, codec, sink, NULL);
|
2010-08-29 16:25:33 +02:00
|
|
|
else if (muxer)
|
|
|
|
gst_element_link_many(convert, muxer, sink, NULL);
|
2010-05-03 21:56:21 +02:00
|
|
|
|
|
|
|
// Set properties
|
|
|
|
g_object_set(src, "location", job.input.toLocal8Bit().constData(), NULL);
|
|
|
|
g_object_set(sink, "location", job.output.toLocal8Bit().constData(), NULL);
|
|
|
|
|
|
|
|
// Set callbacks
|
2010-05-06 18:28:19 +02:00
|
|
|
state->convert_element_ = convert;
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
g_signal_connect(decode, "new-decoded-pad", G_CALLBACK(NewPadCallback), state.get());
|
|
|
|
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(state->pipeline_.get())), BusCallbackSync, state.get());
|
2010-05-08 17:36:12 +02:00
|
|
|
state->bus_callback_id_ = gst_bus_add_watch(gst_pipeline_get_bus(GST_PIPELINE(state->pipeline_.get())), BusCallback, state.get());
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
// Start the pipeline
|
|
|
|
gst_element_set_state(state->pipeline_.get(), GST_STATE_PLAYING);
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
// GStreamer now transcodes in another thread, so we can return now and do
|
|
|
|
// something else. Keep the JobState object around. It'll post an event
|
|
|
|
// to our event loop when it finishes.
|
|
|
|
current_jobs_ << state;
|
2010-05-03 21:56:21 +02:00
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
return true;
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
bool Transcoder::event(QEvent* e) {
|
|
|
|
if (e->type() == JobFinishedEvent::sEventType) {
|
|
|
|
JobFinishedEvent* finished_event = static_cast<JobFinishedEvent*>(e);
|
|
|
|
|
|
|
|
// Find this job in the list
|
|
|
|
JobStateList::iterator it = current_jobs_.begin();
|
|
|
|
while (it != current_jobs_.end()) {
|
|
|
|
if (it->get() == finished_event->state_)
|
|
|
|
break;
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
if (it == current_jobs_.end()) {
|
|
|
|
// Couldn't find it, maybe GStreamer gave us an event after we'd destroyed
|
|
|
|
// the pipeline?
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-30 15:03:21 +02:00
|
|
|
QString filename = (*it)->job_.input;
|
2010-05-06 18:28:19 +02:00
|
|
|
|
2010-05-08 17:36:12 +02:00
|
|
|
// Remove event handlers from the gstreamer pipeline so they don't get
|
|
|
|
// called after the pipeline is shutting down
|
|
|
|
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(
|
|
|
|
finished_event->state_->pipeline_.get())), NULL, NULL);
|
|
|
|
g_source_remove(finished_event->state_->bus_callback_id_);
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
// Remove it from the list - this will also destroy the GStreamer pipeline
|
|
|
|
current_jobs_.erase(it);
|
|
|
|
|
2010-08-30 15:03:21 +02:00
|
|
|
// Emit the finished signal
|
|
|
|
emit JobComplete(filename, finished_event->success_);
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
// Start some more jobs
|
|
|
|
MaybeStartNextJob();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return QObject::event(e);
|
2010-05-03 20:52:35 +02:00
|
|
|
}
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
void Transcoder::Cancel() {
|
|
|
|
// Remove all pending jobs
|
|
|
|
queued_jobs_.clear();
|
|
|
|
|
|
|
|
// Stop the running ones
|
|
|
|
JobStateList::iterator it = current_jobs_.begin();
|
|
|
|
while (it != current_jobs_.end()) {
|
|
|
|
shared_ptr<JobState> state(*it);
|
|
|
|
|
2010-05-08 17:36:12 +02:00
|
|
|
// Remove event handlers from the gstreamer pipeline so they don't get
|
|
|
|
// called after the pipeline is shutting down
|
|
|
|
gst_bus_set_sync_handler(gst_pipeline_get_bus(GST_PIPELINE(
|
|
|
|
state->pipeline_.get())), NULL, NULL);
|
|
|
|
g_source_remove(state->bus_callback_id_);
|
|
|
|
|
2010-05-06 18:28:19 +02:00
|
|
|
// Stop the pipeline
|
|
|
|
if (gst_element_set_state(state->pipeline_.get(), GST_STATE_NULL) == GST_STATE_CHANGE_ASYNC) {
|
|
|
|
// Wait for it to finish stopping...
|
|
|
|
gst_element_get_state(state->pipeline_.get(), NULL, NULL, GST_CLOCK_TIME_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the job, this destroys the GStreamer pipeline too
|
|
|
|
it = current_jobs_.erase(it);
|
|
|
|
}
|
|
|
|
}
|
2010-08-30 13:36:40 +02:00
|
|
|
|
|
|
|
QMap<QString, float> Transcoder::GetProgress() const {
|
|
|
|
QMap<QString, float> ret;
|
|
|
|
|
|
|
|
foreach (boost::shared_ptr<JobState> state, current_jobs_) {
|
|
|
|
if (!state->pipeline_)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
gint64 position = 0;
|
|
|
|
gint64 duration = 0;
|
|
|
|
GstFormat format = GST_FORMAT_TIME;
|
|
|
|
|
|
|
|
gst_element_query_position(state->pipeline_.get(), &format, &position);
|
|
|
|
gst_element_query_duration(state->pipeline_.get(), &format, &duration);
|
|
|
|
|
|
|
|
ret[state->job_.input] = float(position) / duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|