Functions | |
QUVIcode | quvi_next_videolink (quvi_video_t video) |
Move to the next video link (if any). |
QUVIcode quvi_next_videolink | ( | quvi_video_t | video | ) |
Move to the next video link (if any).
Used to iterate video links for the parsed video page. While most of the supported websites typically do not split videos into segments, some, like cctv are known to do so.
video | Handle to a video session |
Example:
char *url; do { quvi_getprop(video, QUVIPROP_VIDEOURL, &url); puts(url); } while (quvi_next_videolink(video) == QUVI_OK);