34 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Score of 0
1 answer
97 views
Django REST & react-admin: Content-Range header missing
Using react-admin's ra-data-simple-rest DataProvider I would like to make a request to a django REST api. In Django I built the following custom pagination class which is supposed to expose the ...
- reputation score 1
Score of 0
0 answers
349 views
How to download and play a specific part of a large video file using requests python
I'm trying to download a specific scene of a large video file that is 3GB+ using python requests and I'm limited on data usage and don't want to download the whole 3GB file just to get the specific ...
- reputation score 54
Score of 3
1 answer
132 views
Mixing request origins in <audio> stream of 206 ranges causes playback to stop
TL;DR When an <audio> element receives 206 Content-Range chunks of data, switching the origin of these chunks mid-stream through a service-worker stops the playback, and it cannot be resumed. ...
- reputation score 6972
Score of 2
0 answers
3067 views
416 Requested Range Not Satisfiable when range is wider than content
I get an Error 416 Range Not Satisfiable response when I make an http request with a byte-range of 0-65536. The byte length of the file requested is only 3356.
Reading the spec on byte-range, it ...
- reputation score 321
Score of 0
1 answer
561 views
PHP: How to do partial content downloads from data that is not a file. E.G. data stored inside of a variable pulled from AWS S3 Bucket
In the code below: In safari where it does partial downloading. I keep getting the error:
Failed to load resource: Plug-in handled load
I get inside of the if (isset($_SERVER['HTTP_RANGE'])) branch. ...
- reputation score 1
Score of 1
1 answer
1942 views
Python - Requests HTTP content-range not working
can anyone please tell me why i am not able to get the range of contents using content-range header,instead i am getting the whole content in given url.
import requests
url="https://tools.ietf....
- reputation score 11
Score of 1
1 answer
906 views
How to include content-range header to an http request from Logic app?
I have a system url Endpoint which requires the user to send some mandatory information in the header part, One of which is Content-range in the following format:
"Content-Range": "...
- reputation score 11
Score of 3
1 answer
2486 views
Microsoft Graph's createUploadSession, Content-Range Header error
I'm trying to use the Microsoft Graph API's createUploadSession endpoint with the JavaScript SDK and attempting to test the upload with a small file that's just over 3MB. Whenever send a PUT request, ...
- reputation score 71
Score of 1
1 answer
242 views
How do I prevent more than one occurence of a specific character using regular expressions
I have a regular expression that uses numbered capture groups:
\\b${JOB_SEARCH_RESULTS_RANGE_KEY}\\s+((\\d+)-(\\d+)|\\*)/(\\d+|\\*)
That will parse a Content-Header:
https://developer.mozilla.org/...
- reputation score 79
Score of 1
1 answer
1572 views
How to prevent browser from loading js from memory cache by range?
I opened my website in Chrome last night, then closed that tab, but didn't close browser. Today I failed to open my site in a new tab because jQuery(not use CDN) hits a syntax error: unexpected end of ...
- reputation score 884
Score of 4
0 answers
4246 views
Content-Range working in Safari but not in Chrome
I'm streaming audio files from a Node.js Express server with Content-Range headers plus no caching headers. This works ok in latest Safari instead, but it does not in Chrome.
While when streaming the ...
- reputation score 16331
Score of 26
2 answers
1671 views
Chrome issue - video stream & session conflict
I have a problem with the implementation of videos in javascript and PHP.
index.php
session_start()
// do other stuff
include ‘video.php’
video.php
<?php
If(!$_REQUEST[‘play’]){
// displaying ...
- reputation score 1043
Score of 2
0 answers
1108 views
Rails ActiveStorage audio Content range
It started as a simple use for ActiveStorage, just store some audio files in mp3 format (done easily) and display it on the site:
<%= audio_tag url_for(recording.audio_file), controls: true, ...
- reputation score 510
Score of 2
0 answers
1590 views
How do I stream a video of initially unknown size to the HTML5 video tag?
I am attempting to write a web service (using C# and WebAPI, thought the actual server technology likely isn't important) that hosts dynamic video files for consumption by a basic HTML5 video element.
...
- reputation score 849
Score of 2
3 answers
2540 views
OneDrive API Node.js - Can´t use :/createUploadSession Content-Range Error
My problem was that I couldn ́t upload files bigger than 4MB so I used the createuploadsession according to createuploadsession
I successfully get the uploadUrl value from the createuploadsession ...
- reputation score 390