Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
i have a problem to find master m3u8 link. when i save one of the m3u8 link, it's zero Kb.
i want to download this video but i can't. can someone help me for downloading such as this video?
https://stream.uploadvi.ir/l3cof3inades/view
I searched a lot about this topic and as far as I understood, this is a protected m3u8.
i think we need to save at least one of the m3u8 link to access the key, and iv information.
But when saving each link, it shows 0 KB.
at first i need to access m3u8 information like this :
`#EXTM3U
#EXT-X-VERSION:6
#EXT-X-TARGETDURATION:2
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-INDEPENDENT-SEGMENTS`
but i don't know how to access those information.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 days ago.
Improve this question
Regarding autodesk platform services, I'd like to run the demo provided in the following github on my local PC.
https://github.com/autodesk-platform-services/aps-iot-extensions-demo
I have the prerequisites, but I don't know what to do with the value of the "view GUID (variable "APS_MODEL_VIEW" in the code) regarding the modification of the "public/config.js" file in the "running locally" step.
If anyone knows, please let me know where I can get it on the platform or what curl command I should use to get it.
I tried some of the documents listed in the "Step-by-Step Tutorials" at the following URL.
https://aps.autodesk.com/en/docs/oauth/v2/tutorials/create-app/
Also, the variables that need to be modified in the code, such as
・APS_CLIENT_ID
・APS_CLIENT_SECRET
・APS_MODEL_URN
are available.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm developing a website that uses a lot of images and was thinking of storing those images on Google Drive using the Drive API whenever an image is uploaded. Do you think this is a good idea and will it affect the performance in any way?
PS. After uploading to Drive from the backend, I will store a link to the image in the DB.
In your case, maybe you should take a look at Cloudinary.
The free plan is very generous, and the api is very easy to understand, despite the possibility to transform the images (crop, etc...).
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I would like to access website A's localstorage from website B's script, how could I do that?
If that is not possible in any way how could I save a string from website A (using a JS script) to my computer and how could I read it from website B's script?
One possible option is to make a .txt file in the same root directory and provide its path to where you want to use the string.
If you want to use it in a javascript file, you can refer: How to read text file in JavaScript
I hope this helps!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have built a program using HTML, JavaScript, CSS, and PHP. I want to know how to put HTML file in the google so, people can use it or everyone can view it. I heard I need to do something with SEO then they will let mine program view by everyone.
you must buy host and domain and then upload your site in host you buy (you can search for free host and domain for first time) and then index it with the google search console
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I tried using java script but it didn't work. I also tried php imagegrabscreen() but it demands URL whereas I have a customer's page URL different for everyone ex: /member.php?email=shady#gmail.com&code=A101_123 .
Basically I want to store user's screenshot so he can be able to see those images of his activity. So any solution?
I would recomment to take a look at html2canvas. It is a JavaScript solution that works on the client side. Only problem: It takes the current DOM from the user and builds a picture with the browser engine. So it is not 100% accurate, but pretty close.