MMPlayerView icon indicating copy to clipboard operation
MMPlayerView copied to clipboard

Download/streaming speed & bandwidth

Open AbhiSNSoft opened this issue 6 years ago • 5 comments

Is possible to get download/streaming speed & bandwidth?

AbhiSNSoft avatar Aug 07 '19 08:08 AbhiSNSoft

I only provide percent, you need more information ??

MillmanY avatar Aug 07 '19 09:08 MillmanY

How to display the percentage? I mean like what is the callback?

melvinlee720 avatar Aug 08 '19 03:08 melvinlee720

Example 'DetailViewController'

fileprivate func addDownloadObservation() {

    guard let downloadURL = self.data?.play_Url else {
        return
    }
    downloadObservation = MMPlayerDownloader.shared.observe(downloadURL: downloadURL) { [weak self] (status) in
        DispatchQueue.main.async {
            self?.setWith(status: status)
        }
    }
}

MillmanY avatar Aug 08 '19 03:08 MillmanY

What if the video are taken from the internet instead of preloaded in the asset? Is it possible to capture the streaming speed for it?

melvinlee720 avatar Aug 08 '19 04:08 melvinlee720

I only provide percent, you need more information ??

can request for speed & bandwidth?

AbhiSNSoft avatar Aug 14 '19 03:08 AbhiSNSoft