mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
/movieplayer: filpeplayer add parse for rtmp
Origin commit data
------------------
Commit: af920c8988
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-08-26 (Mon, 26 Aug 2013)
This commit is contained in:
@@ -397,7 +397,8 @@ bool CMoviePlayerGui::SelectFile()
|
||||
sscanf(cLine, "#EXTINF:%d,%[^\n]\n", &dur, name);
|
||||
if (strlen(cLine) > 0 && cLine[0]!='#')
|
||||
{
|
||||
char *url = strstr(cLine, "http://");
|
||||
char *url = NULL;
|
||||
if ( (url = strstr(cLine, "http://")) || (url = strstr(cLine, "rtmp://")) ){
|
||||
if (url != NULL) {
|
||||
printf("name %s [%d] url: %s\n", name, dur, url);
|
||||
full_name = url;
|
||||
@@ -408,6 +409,7 @@ bool CMoviePlayerGui::SelectFile()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else
|
||||
menu_ret = filebrowser->getMenuRet();
|
||||
CAudioMute::getInstance()->enableMuteIcon(true);
|
||||
|
Reference in New Issue
Block a user