#include int main() { cv::VideoCapture cap( "http://10.5.5.9:8080/live/amba.m3u8" ); cv::namedWindow( "GoPro" ); cv::Mat frame; do { cap >> frame; cv::imshow( "GoPro", frame ); } while ( cv::waitKey( 30 ) < 0 ); return 0; }