I'm trying to search the youtube/google data api for videos with duration above x seconds that also have a minimum of x views.
I was hoping something like
"http://gdata.youtube.com/feeds/api/videos?q=surfing&max-results=25&fields=entry[yt:statistics/@viewCount > 100]&fields=entry[yt:statistics/@seconds > 300]"
would work but that gives me an error ("Inconsistent repeating query parameter fields"). What am I doing wrong?