You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! First of all, I want to say how much I appreciate your work on this tool. It's incredibly useful, and I’ve been using it as a private streaming service due to its fast performance. I have a few suggestions for potential upgrades that would make the tool even better:
1. URL Upload Reliability
The URL upload feature doesn't work consistently for me. It would be great if you could improve its reliability by incorporating tools like curl, requests, or aria2 as alternative methods for handling the uploads.
2. Copy Link Button with TinyURL Integration
A "Copy Link" button would be really helpful. This would allow users to select multiple files and copy their direct download links to the clipboard. Additionally, implementing a TinyURL shortener would make large links easier to share.
Here’s an example of how the TinyURL functionality could be added:
functionshortenURLs(urls,copyToClipboard){constshortUrls=[];letcompleted=0;urls.forEach(url=>{// TinyURL API request to shorten each URLfetch(`https://tinyurl.com/api-create.php?url=${encodeURIComponent(url)}`).then(response=>response.text())// Parse response as text.then(shortUrl=>{shortUrls.push(shortUrl);// Collect the shortened URLcompleted++;// Track how many URLs are shortenedif(completed===urls.length){// Check if all URLs are processedif(copyToClipboard){copyToClipboard(shortUrls.join('\n'));// Copy all shortened URLs to clipboard}else{constblob=newBlob([shortUrls.join('\n')],{type: 'text/plain'});constlink=document.createElement('a');link.href=URL.createObjectURL(blob);// Create a downloadable text filelink.download='short-urls.txt';link.click();// Trigger file download}}});});}
3. Video Player Upgrades
I've been using the tool primarily for video streaming, but there are a few issues I'd love to see addressed:
4K and Large Video Playback: Many 4K videos and movies larger than 2GB are not playing showing grey screen—some of them are being downloaded instead of streamed.
Shareable Stream Links: It would be helpful if we could generate a stream link that allows others to play the video directly without needing to enter login.
Improved Format Support: The player currently struggles with certain formats, particularly larger files and formats like MP4,MKV and TS. Tools like Bhadoo Index for Google Drive support files as large as 90GB+, so having similar support would be fantastic. maybe for that it need encdoing or something im not sure but i guess you know about that.
Folder Streaming: Could you add the ability to stream entire folders? This would allow me to share a folder link where others can watch all videos in that folder without needing to log in.
Thanks again for your hard work, and I hope these suggestions are helpful! love your work.😊
The text was updated successfully, but these errors were encountered:
Thank you so much for your kind words and detailed suggestions for enhancing the tool. I truly appreciate your feedback and I’m glad to hear that you find the tool helpful.
Hello! First of all, I want to say how much I appreciate your work on this tool. It's incredibly useful, and I’ve been using it as a private streaming service due to its fast performance. I have a few suggestions for potential upgrades that would make the tool even better:
1. URL Upload Reliability
The URL upload feature doesn't work consistently for me. It would be great if you could improve its reliability by incorporating tools like
curl
,requests
, oraria2
as alternative methods for handling the uploads.2. Copy Link Button with TinyURL Integration
A "Copy Link" button would be really helpful. This would allow users to select multiple files and copy their direct download links to the clipboard. Additionally, implementing a TinyURL shortener would make large links easier to share.
Here’s an example of how the TinyURL functionality could be added:
3. Video Player Upgrades
I've been using the tool primarily for video streaming, but there are a few issues I'd love to see addressed:
Thanks again for your hard work, and I hope these suggestions are helpful! love your work.😊
The text was updated successfully, but these errors were encountered: