/// \file flv_analyser.cpp /// Contains the code for the FLV Analysing tool. #include #include #include #include #include #include #include #include #include #include //FLV support /// Reads FLV from stdin and outputs human-readable information to stderr. int main() { FLV::Tag FLV_in; // Temporary storage for incoming FLV data. while (!feof(stdin)){ if (FLV_in.FileLoader(stdin)){ std::cout << "Tag: " << FLV_in.tagType() << "\n\tTime: " << FLV_in.tagTime() << std::endl; } } return 0; }