• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Streams not appearing in administration console

Guest
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Hi !

I'm using AMS to stream video to iOS through  /hls-vod.

The video shows correctly but when I connect to the flash administration console, the stream doesn't appear.

It's working correctly when I stream from flash in a browser from  /vod

The /hls-vod doesn't appear in the server application in the console. I don't know if it should.

Is it normal ?

Thanks !

Vincent

Views

1.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Yes, this is normal.

RTMP streams appear in the admin console. HTTP streams do not, and this includes hls-vod, hls-live, hds-live and hds-vod by default. You will need to implement some form of stream monitoring yourself.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

oh ! bummer...

Thanks for the info !!

Do you by any chance have any ressources on how to implement that ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Hello, try this cmd:

http://localhost{:8134}/server-status <http://localhost%7b:8134%7d/server-status>

then below you might something like

0-0 6520 9/11/11 W 1 0 1805.9 1.77 1.77 176.120.45.219 localhost GET /hds-vod/sample1_500kbps.f4vSeg1-Frag8 HTTP/1.1

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

Or better yet, do this cmd: http://localhost{:8134}/server-status?auto <http://localhost%7b:8134%7d/server-status?auto> and look for BusyWorkers node.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

You could as suggested use the Apache server-status, but interpreting that information by hand is not easy for most of us, and does not work if there is any kind of cache between yourserver and the end users.

We build in a "ping" into our OSMF based player. Every few seconds a request is made to a web server running a simple application. The URL in the request contains all the information we want to track (http://ping.example.com/video/video-name?bitrate=x&buffer=y&error=false&variable=z). This information is then put into a simple analytics system which tracks streams over time, and enables us to drill down to the bitrates, and the other data passed in the request. If we use several different CDNs to deliver the content we still control the ping server, and it aggregates all the data.

You could use the GTrack plugin in OSMF to do the same kind of event tracking in Google Analytics.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 25, 2013 Apr 25, 2013

Copy link to clipboard

Copied

LATEST

Thanks to both of you ! Great answers.

I'll see if I can use any of them.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines