小编DIV*_*SAN的帖子

Http Media Streaming Server

我用RED5媒体服务器(RTMP)开发了视频流应用程序.而不是RTMP需要通过HTTP流式传输实时视频.

任何开源HTTP媒体服务器??

是否有支持RTMP和HTTP的开源服务器?

提前致谢.

html5 video-streaming audio-streaming http-live-streaming http-streaming

7
推荐指数
2
解决办法
3万
查看次数

Angular JS News Feed不会自动更新

我正在开发角度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)

javascript angularjs

1
推荐指数
1
解决办法
2690
查看次数