]> git.sesse.net Git - kdenlive/blob - renderer/kdenlive_render.cpp
Use char for single character [krazy 1-44] by Mikko Rapeli
[kdenlive] / renderer / kdenlive_render.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include <stdio.h>
21 #include <QCoreApplication>
22 #include <QStringList>
23 #include <QString>
24 #include <QUrl>
25 #include <QtDebug>
26
27 #include "renderjob.h"
28
29 int main(int argc, char **argv)
30 {
31     QCoreApplication app(argc, argv);
32     QStringList args = app.arguments();
33     QStringList preargs;
34     QString locale;
35     int pid = 0;
36     int in = -1;
37     int out = -1;
38     if (args.count() >= 7) {
39         // Remove program name
40         args.removeFirst();
41
42         bool erase = false;
43         if (args.at(0) == "-erase") {
44             erase = true;
45             args.removeFirst();
46         }
47         bool usekuiserver = false;
48         if (args.at(0) == "-kuiserver") {
49             usekuiserver = true;
50             args.removeFirst();
51         }
52         if (QString(args.at(0)).startsWith("-pid:")) {
53             pid = QString(args.at(0)).section(':', 1).toInt();
54             args.removeFirst();
55         }
56
57         if (QString(args.at(0)).startsWith("-locale:")) {
58             locale = QString(args.at(0)).section(':', 1);
59             args.removeFirst();
60         }
61         if (args.at(0).startsWith("in="))
62             in = args.takeFirst().section('=', -1).toInt();
63         if (args.at(0).startsWith("out="))
64             out = args.takeFirst().section('=', -1).toInt();
65         if (args.at(0).startsWith("preargs="))
66             preargs = args.takeFirst().section('=', 1).split(' ', QString::SkipEmptyParts);
67
68         QString render = args.takeFirst();
69         QString profile = args.takeFirst();
70         QString rendermodule = args.takeFirst();
71         QString player = args.takeFirst();
72         QUrl srcurl = QUrl::fromEncoded(args.takeFirst().toUtf8());
73         QString src = srcurl.path();
74         QUrl desturl = QUrl::fromEncoded(args.takeFirst().toUtf8());
75         QString dest = desturl.path();
76         bool dualpass = false;
77         bool doerase;
78         QString vpre;
79
80         int vprepos = args.indexOf(QRegExp("vpre=.*"));
81         if (vprepos >= 0) {
82             vpre=args.at(vprepos);
83         }
84         QStringList vprelist = vpre.replace("vpre=", "").split(',');
85         if (vprelist.size() > 0) {
86             args.replaceInStrings(QRegExp("^vpre=.*"), QString("vpre=").append(vprelist.at(0)));
87         }
88
89         if (args.contains("pass=2")) {
90             // dual pass encoding
91             dualpass = true;
92             doerase = false;
93             args.replace(args.indexOf("pass=2"), "pass=1");
94             if (args.contains("vcodec=libx264")) args << QString("passlogfile=%1").arg(dest + ".log");
95         } else {
96             args.removeAll("pass=1");
97             doerase = erase;
98         }
99
100         qDebug() << "//STARTING RENDERING: " << erase << "," << usekuiserver << "," << render << "," << profile << "," << rendermodule << "," << player << "," << src << "," << dest << "," << preargs << "," << args << "," << in << "," << out ;
101         RenderJob *job = new RenderJob(doerase, usekuiserver, pid, render, profile, rendermodule, player, src, dest, preargs, args, in, out);
102         if (!locale.isEmpty()) job->setLocale(locale);
103         job->start();
104         if (dualpass) {
105             if (vprelist.size()>1)
106                 args.replaceInStrings(QRegExp("^vpre=.*"),QString("vpre=").append(vprelist.at(1)));
107             args.replace(args.indexOf("pass=1"), "pass=2");
108             RenderJob *dualjob = new RenderJob(erase, usekuiserver, pid, render, profile, rendermodule, player, src, dest, preargs, args, in, out);
109             QObject::connect(job, SIGNAL(renderingFinished()), dualjob, SLOT(start()));
110         }
111         app.exec();
112     } else {
113         fprintf(stderr, "Kdenlive video renderer for MLT.\nUsage: "
114                 "kdenlive_render [-erase] [-kuiserver] [-locale:LOCALE] [in=pos] [out=pos] [render] [profile] [rendermodule] [player] [src] [dest] [[arg1] [arg2] ...]\n"
115                 "  -erase: if that parameter is present, src file will be erased at the end\n"
116                 "  -kuiserver: if that parameter is present, use KDE job tracker\n"
117                 "  -locale:LOCALE : set a locale for rendering. For example, -locale:fr_FR.UTF-8 will use a french locale (comma as numeric separator)\n"
118                 "  in=pos: start rendering at frame pos\n"
119                 "  out=pos: end rendering at frame pos\n"
120                 "  render: path to MLT melt renderer\n"
121                 "  profile: the MLT video profile\n"
122                 "  rendermodule: the MLT consumer used for rendering, usually it is avformat\n"
123                 "  player: path to video player to play when rendering is over, use '-' to disable playing\n"
124                 "  src: source file (usually MLT XML)\n"
125                 "  dest: destination file\n"
126                 "  args: space separated libavformat arguments\n");
127     }
128 }
129