VideoCapture (OSX または Ubuntu) で開いた後、ビデオ ファイルのコーデックを出力する方法を知りたいです。
ファイルは、qt アプリケーション内の opencv によって正しく読み込まれ、視覚化されます。
QString filename = QFileDialog::getOpenFileName(...)
cout << filename.size() << endl; // size in byte
VideoCapture cap = VideoCapture(filename.toStdString());
cout << cap.get(CV_CAP_PROP_FRAME_HEIGHT) << endl; // print the height
cout << cap.get(CV_CAP_PROP_FPS) << endl; // print the fps
codec ??