digiKam
Loading...
Searching...
No Matches
ffmpegconfighelper.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2022-03-17
7 * Description : Methods to list FFMPEG features.
8 *
9 * SPDX-FileCopyrightText: 2021-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
13 * ============================================================ */
14
15#pragma once
16
17// Qt includes
18
19#include <QString>
20#include <QStringList>
21#include <QMap>
22
23// Local includes
24
25#include "digikam_export.h"
26
27namespace Digikam
28{
29
30typedef QMap<QString, QStringList> FFMpegProperties;
31
32class DIGIKAM_EXPORT FFMpegConfigHelper
33{
34public:
35
42 static FFMpegProperties getVideoCodecsProperties();
43
50 static FFMpegProperties getAudioCodecsProperties();
51
56 static FFMpegProperties getExtensionsProperties();
57
58private:
59
60 FFMpegConfigHelper() = delete;
61 ~FFMpegConfigHelper() = delete;
62
63 Q_DISABLE_COPY(FFMpegConfigHelper)
64};
65
66} // namespace Digikam
Definition ffmpegconfighelper.h:33
Definition datefolderview.cpp:34
QMap< QString, QStringList > FFMpegProperties
Definition ffmpegconfighelper.h:30