我用RED5媒体服务器(RTMP)开发了视频流应用程序.而不是RTMP需要通过HTTP流式传输实时视频.
任何开源HTTP媒体服务器??
是否有支持RTMP和HTTP的开源服务器?
提前致谢.
html5 video-streaming audio-streaming http-live-streaming http-streaming
我正在开发角度JS的新闻提要页面.每当用户更改应用程序时,应在新闻页面上更新.我正在显示新闻Feed页面中的更改.但是当我刷新页面时它会显示更改的问题.我必须在不刷新页面的情况下显示更改.我正在从http url加载数据.
到目前为止我尝试了html代码:
<div> ng-controller="TopListCtrl"
<div class="cb-feed-wrapper bradius5" ng-repeat="post in posts">
<h3>{{ post.userId}}</h3>
<p> {{post.change}} </p><p> Created On : {{ post.createdOn }} | Updated On : {{ post.updatedOn }} </p><p Time: {{ post.dateTime }}</p>
</div></div>
Run Code Online (Sandbox Code Playgroud)
控制器代码:
function TopListCtrl($scope, $http, $timeout) {
$scope.refreshInterval = 1;
$http({
url: '/zzzz/v1/zzzz/all?callback=JSON_CALLBACK',
method: "GET"
}).success(function (data) {
$scope.posts = data;
}).error(function (data) {
});
$timeout(function() {
$scope.refreshInterval * 5;
});
Run Code Online (Sandbox Code Playgroud)