@house3000
It's 60 days,
After the 60 day it will cost you about $0.2 per day to keep 1TB of videos
DMCA videos are removed, you get a email once we remove something
@berkkan
Please explain more
Hi, when I try to upload using the API, I receive the error message "405 Not Allowed" I can upload the same file manually without any issues, but do you need to grant any permissions specifically for the API?
We do not have that error at all, possibly your are sending the wrong request.
Allowed requests are only GET, POST
$upURL = json_decode(curl("https://streamdav.com/api/upload/GetUploadSrv?key={$upload->stream_site->api_key}"))->data->url;
if($upURL) {
$curlUp = curl_init();
curl_setopt_array($curlUp, array(
CURLOPT_URL => $upURL,
CURLOPT_POST => TRUE,
CURLOPT_POSTFIELDS => array('api_key'=>$upload->stream_site->api_key, 'File' => new \CURLFile ($upload->file_path)),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => FALSE,
CURLOPT_SSL_VERIFYHOST => FALSE,
CURLOPT_TIMEOUT => 0,
));
$response = curl_exec($curlUp);
$err = curl_error($curlUp);
dd($response);
PHP:$upURL = json_decode(curl("https://streamdav.com/api/upload/GetUploadSrv?key={$upload->stream_site->api_key}"))->data->url; if($upURL) { $curlUp = curl_init(); curl_setopt_array($curlUp, array( CURLOPT_URL => $upURL, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => array('api_key'=>$upload->stream_site->api_key, 'File' => new \CURLFile ($upload->file_path)), CURLOPT_RETURNTRANSFER => true, CURLOPT_SSL_VERIFYPEER => FALSE, CURLOPT_SSL_VERIFYHOST => FALSE, CURLOPT_TIMEOUT => 0, )); $response = curl_exec($curlUp); $err = curl_error($curlUp); dd($response);
I am sending a POST request to the URL returned by GetUploadSrv.
Can you provide a working code example, regardless of the programming language?
Thanx
Hello, this week we can expect some updates that will be added, which we wrote about earlier here in the topic?
- I can't see the preview of the video thumbnails
- I don't see the security button
- I can't force adblock to be disabled or set ads, after refreshing the page the fields are empty again.
- and it would be good to add the BBcode forum as soon as possible.
Please check our documentations, we have working examples in all languages
Download it and use beautifer to make the code readable
If it's still not working PM to check everything with you
Yes I do have them on the todo list, today we fixed already lot of bugs and still fixing
- set ads, after refreshing the page the fields are empty again.
This was fixed already
During the week we expect to add and to fix all mentioned issues/features
curl -X POST -F 'key=XXX' -F 'File=ttee.mkv' http://XXXXXX03.streamdav.com/upload
Could you add the option to obtain the embed of the videos, when right click on said video?
![]()
Your example pages are returning a 404 error. Please check them
Furthermore, the CURL example I executed from the terminal is yielding the same result
Bash:curl -X POST -F 'key=XXX' -F 'File=ttee.mkv' http://XXXXXX03.streamdav.com/upload