1 | /* |
2 | SPDX-FileCopyrightText: 2012 Vishesh Handa <me@vhanda.in> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-or-later |
5 | */ |
6 | |
7 | |
8 | #ifndef FFMPEGEXTRACTOR_H |
9 | #define |
10 | |
11 | #include "extractorplugin.h" |
12 | |
13 | namespace KFileMetaData |
14 | { |
15 | |
16 | class : public ExtractorPlugin |
17 | { |
18 | Q_OBJECT |
19 | Q_PLUGIN_METADATA(IID kfilemetadata_extractor_iid |
20 | FILE "ffmpegextractor.json" ) |
21 | Q_INTERFACES(KFileMetaData::ExtractorPlugin) |
22 | |
23 | public: |
24 | explicit (QObject* parent = nullptr); |
25 | |
26 | void (ExtractionResult* result) override; |
27 | QStringList () const override; |
28 | |
29 | friend class ; |
30 | }; |
31 | } |
32 | |
33 | #endif // FFMPEGEXTRACTOR_H |
34 | |