Streamtape.com | new Partner Program rates | reliable and profitable | 1080p | API | Subtitles | anti-adblock | fast support

Streamtape

Active Member
Corporate Membership
1,361
2020
1,211
16,500
Hello Wjunction community,

today we want to introduce to you streamtape.com . More information in the graphic below.



You can register here: https://streamtape.com/createaccount


Our Partner Program you can find here: https://streamtape.com/partnerprogram

If you have any questions you can use the contact form here:


https://streamtape.com/support

E-Mail: support@streamtape.com

Example Video: https://streamtape.com/v/dvkYGPQvYWuQzZ/Example_Video

Additional information:

ZOOM Uploader is supported

themaCreator is supported

Min. payout 10$

Payout options:
PayPal | WebMoney | Perfect Money | AdvCash | Payeer | Bitcoin | Bitcoin Cash

We don't sell premium account or any premium player without ads!
 
Last edited:
4,357 comments
Hi @Streamtape
Yes every upload, both web upload and remote upload, first "word" of Korean title disappear. So for example, if title is "한국어로 된 영화" then after upload finishes, it comes as "된 영화" just first word gone. On the other hand, if there is any english character in front, even an a like "a 한국어로 된 영화" its all good. Though my 6k+ files are all titled in Korean, i can't really adjust it before uploading.
Also, remote upload from google drive not working atm lol.
 
I was wondering if it will be possible to implement an option which would prevent others from copying your videos? Cause if they manage to get a link, it's really easy to just copy your streamtape links and vids :(
 
cannot request payment. after opening the confirmation link sent to the email I get an error message:
DfmcLAL.png
 
I was wondering if it will be possible to implement an option which would prevent others from copying your videos? Cause if they manage to get a link, it's really easy to just copy your streamtape links and vids :(

We will take a look into it :)

cannot request payment. after opening the confirmation link sent to the email I get an error message:
DfmcLAL.png

Hello,

please try to deactivate your adblock when you click on the confirmation link another browser can help as well. If it still wont work for you pm me with your payout method and amount and i will request it for you.

Regards
 
hi guys,

i'm still a newbie to API and python,

I've written a super super easy script to run your API as I want to check which of my files are DEAD or inactive, the codes are as below:

import requests

login = 'myloginfjkfdlsjlk'
key = 'mykeyblahblahblah'
file = 'XorQOyJrdDhzpB'
response = requests.get('https://api.streamtape.com/file/info?file={file}&login={login}&key={key}')
print(response.json())


I keep getting 403 response,
but when I replace the codes in the {file}, etc in the request.get it works,

how do I modify my python codes as to print the correct .json?

Thanks
 
response = requests.get('https://api.streamtape.com/file/info?file={file}&login={login}&key={key}')

quick and dirty:
Code:
response = requests.get('https://api.streamtape.com/file/info?file='+file+'&login='+login+'&key='+key)

better and cleaner
Code:
response = requests.get('https://api.streamtape.com/file/info?file={file}&login={login}&key={key}'.format( file=file, login=login, key=key))
 
Last edited:
quick and dirty:
Code:
response = requests.get('https://api.streamtape.com/file/info?file='+file+'&login='+login+'&key='+key)

better and cleaner
Code:
response = requests.get('https://api.streamtape.com/file/info?file={file}&login={login}&key={key}'.format( file=file, login=login, key=key))
Thank you kind sir!!!

now I've learnt "format"~ Thank you!
 
@Streamtape
I received my payment via BTC.(Thank you)
But in my account the payment status is "Pending"
Maybe you forgot to update
@dallaskohler

Seems like our exchanger forgot to update your payment. Could you pm me with your streamtape e-mail so i can update it for you. But even when its on peding you can request future payouts. We dont restrict users to one payment at a time :)
 
dear @darkestblue and @Streamtape

after i Print out the results,
is there anyway I can like make list for it to scan?

or point me in the right direction on what part of the python script I should read to implement this,
learning python from scratch would be pointless.

I have around 5k movies on Streamtape,
and I would like to use the above script to return the results of them on which of them is dead?

do I make a list on .csv file and use python to check each file id?
and how do I do that what script codes should I read to do that?

Thanks
 
Back
Top