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
Hi, thanks for your Script.
I use your API to extract the download URL of the video. I created the following script for this. However, in this case a video is always output in poor resolution. How can I change this to "Best"?
parser = argparse.ArgumentParser(description="Beispiel-Skript mit Befehlszeilenargumenten")
parser.add_argument("url", type=str, help="URL für den Download")
args = parser.parse_args()
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, thanks for your Script.
I use your API to extract the download URL of the video. I created the following script for this. However, in this case a video is always output in poor resolution. How can I change this to "Best"?
`from hqporner_api import Client
import argparse, sys
from xvideos_api import Client, Quality, threaded, default, FFMPEG
parser = argparse.ArgumentParser(description="Beispiel-Skript mit Befehlszeilenargumenten")
parser.add_argument("url", type=str, help="URL für den Download")
args = parser.parse_args()
quelle_url = args.url
client = Client()
video_object = client.get_video(url=quelle_url)
print(video_object.content_url)
`
Beta Was this translation helpful? Give feedback.
All reactions