18,372 questions
0
votes
1
answer
26
views
How to download files from an API in React Native (Expo SDK 54)?
I am building a React Native app with Expo SDK 54. I want to download a file (e.g., PDF or image) from my API and save it on my device. I am not sure how to handle the file download and save it using ...
-2
votes
0
answers
50
views
How can I extract embedded video link from vdo.js? [closed]
I need the method to extract the videos of course i am unable to download from the site as it is embedded and follow restricted process while playing the vdo.
1
vote
0
answers
70
views
How to download the output folder on Kaggle?
I wrote a notebook on Kaggle and imported a dataset.
The main content of the notebook is as follows:
%%bash
pip install xxx # Install dependencies
if [ ! -d "/kaggle/working/latex-ocr-...
0
votes
0
answers
45
views
curl_exec download fails if filename contains +sign [duplicate]
I am using following code to trigger download from browser on button click:
header("Content-Disposition: attachment; filename=".$_GET['name']);
$url = $_GET['name'];
$url= ...
0
votes
1
answer
74
views
DownloadButton in nested Shiny module UIOutput is inactive
When working on a larger app that has Shiny modules that include modules themselves, I've noticed that I can't put a downloadbutton in a renderUI call without it being disabled. Here's an example:
...
2
votes
0
answers
111
views
Browser (Chrome, Firefox) cancels download stream prematurely, after 5 seconds
I have a function that is streaming a csv file for the client to download. I find that after 5 seconds, the browser will terminate the connection. I have used postman and curl, and it completes the ...
-1
votes
2
answers
197
views
How to use Python to download a pdf file from a link (not button!)
How to use python to download a pdf file from a "Download PDF" link on a web page and save it to a local folder? If I move cursor to the link and right click "inspect" I got ...
0
votes
0
answers
98
views
pm2 makes paddleocr models keep in loop when trying to start process
I have a FastAPI project that I'm trying to run on server. that project uses PaddleOCR, when I just run the project with:
fastapi run main.py
It runs normally and shows a ppocr log:
ppocr DEBUG: ...
1
vote
2
answers
194
views
No files found when automatically downloading PDF files from a website
Download PDF files frome this website "https://register.awmf.org/de/start"
but the code didn't find any PDF Link, although there are links to PDF files, but indirectly, I will attach a ...
0
votes
0
answers
48
views
Facing an LateInitializationError: on Vlc flutter while playing torrent streams
Future<void> _initializePlayer() async {
if (_isDisposed || !mounted || _isInitializing) return;
_isInitializing = true;
_controllerId = 'vlc_${DateTime.now().millisecondsSinceEpoch}...
0
votes
1
answer
35
views
Problem while downloading PDF from R with download.file()
I have come across a problem while trying to download a PDF from this URL:
https://pmc.ncbi.nlm.nih.gov/articles/PMC11761262/pdf/antibiotics-14-00062.pdf
It is an open-access file, so there are no ...
1
vote
0
answers
125
views
Django downloads binary file from FastAPI (MinIO presigned URL), but the file is corrupted and downloaded with wrong name
I'm using Django (frontend) and FastAPI (backend) with MinIO as file storage. My setup:
FastAPI generates a presigned MinIO download_url for the file.
Django fetches metadata via FastAPI, then ...
0
votes
0
answers
28
views
kotlin download a file divided into multiple uris in a single request and show a single progress
as stated in the subject, I have an application that provides an audio download service.
the problem is that the audio is divided into multiple smaller files (for example: an audio track divided into ...
0
votes
0
answers
69
views
How to send server sent event
Implement server-sent events to display download progress for multiple asynchronous downloads in a web application.
Technology stacks:
backend - JAVA spring boot
UI- angular 17
Consider I have a ...
0
votes
1
answer
195
views
Download PDF file from Webpage using UIPath
I currently have a work project that consists of input some fields, generating a certain PDF, and downloading it locally or to a G-Suite Drive folder. The problem is I can't get the automation (UIPath ...
0
votes
0
answers
30
views
How to implement downloading logic on strapi?
I am trying to implement downloading file on strapi controller.
I tried this.
const path = "/records/xxxx.mp4"
if (!fs.existsSync(path)) {
console.log("file does not exist&...
2
votes
2
answers
64
views
Provide ReadableStream as a download source for streamed download
Searching for "download ReadableStream", I find two questions:
Download Readablestream as file
How to download a ReadableStream on the browser that has been returned from fetch
Both have ...
0
votes
0
answers
163
views
Direct download link for Google Drive files on android without opening google drive
On my webpage, I am downloading google drive files via the following approach:
https://drive.google.com/uc?export=download&id=${fileId}
However, this only works on computers. On phones (such as an ...
0
votes
0
answers
28
views
Flutter: download tcx from Strava using url_launcher
On Strava's website, you can download the .tcx file of your activities directly using this url:
https://www.strava.com/activities/yourActivityId/export_tcx
You have to be authenticated on the website ...
-2
votes
2
answers
73
views
When git downloads files, how do you find the name of the thing being downloaded?
When git prints information like this:
Receiving objects: 98% (6657/6747), 286.45 MiB | 2.14 MiB/s
Receiving objects: 98% (6657/6747), 288.64 MiB | 2.13 MiB/s
Receiving objects: 98% (6657/6747), ...
0
votes
0
answers
71
views
File Downloads on iOS Firefox Show "Unknown" Filename and Incorrect File Size
I'm working on a file download feature in my Node.js + Express backend and React frontend. The download works fine on most browsers, but I’m experiencing the following issues only on iOS Firefox:
The ...
0
votes
2
answers
83
views
Calculate remaining time for a multiple connection parrallel download
I have a Java program that downloads a file from a server, using 8 parallel connections. The file is downloaded in 8 parts and assembled at the end. How can I calculate the remaining time of ...
0
votes
1
answer
94
views
Error when downloading SVG files from React application
I have a page of iconCard components that consume icon components. I have added a button to each card to allow downloading the icon for each card on click of a button contained on that card with the '...
0
votes
1
answer
160
views
Autodesk Construction Cloud APIs - Download photos with metadata
Following the steps described at https://aps.autodesk.com/en/docs/data/v2/tutorials/download-file/, I'm able to download photos. The only that is missing here is that I don't know how to obtain the ...
1
vote
1
answer
126
views
How can I download all releases of a specific repository on GitHub at once?
I want to download all releases of a specific repository on GitHub, including the source code, at once.
I tried using the 'gh release download' command in GitHub CLI for this, but it didn't allow me ...