Updated to allow for basic conversion.

This commit is contained in:
Erik Zandvliet 2013-03-06 11:53:31 +01:00 committed by Thulinma
parent 21a9aaab98
commit 4fe4fca081
2 changed files with 183 additions and 9 deletions

View file

@ -12,8 +12,15 @@ namespace Converter {
Converter();
converterInfo & getCodecs();
JSON::Value getEncoders();
JSON::Value queryPath(std::string myPath);
void startConversion(std::string name, JSON::Value parameters);
void updateStatus();
JSON::Value getStatus();
void clearStatus();
private:
void fillFFMpegEncoders();
converterInfo allCodecs;
std::map<std::string,JSON::Value> allConversions;
std::map<std::string,std::string> statusHistory;
};
}