Questions tagged [pyvimeo]

14 questions
2
votes
1 answer

Is there a defined list of possible Vimeo resolutions?

I noticed if you upload a video to Vimeo via the api, and the resolution is something non-standard, it will normalize the height during transcoding. Ie, I had a video that was 1920x1050 (NOT 1080), and vimeo normalized it to 1906x1080. Is there a…
Big Guy
  • 712
  • 1
  • 8
  • 21
1
vote
1 answer

Uploading a video with Python API gives: AttributeError: 'exceptions.UnicodeDecodeError' object has no attribute 'text'

I am trying to upload a file using the "reference" implementation inside the PyVimeo API. I have all the permissions and a file called "config.json" with the keys and tokens (not shown here). The mp4 file I am referencing in the script actually…
Fabio Rotondo
  • 390
  • 2
  • 10
1
vote
2 answers

How to find vm in particular folder using pyvmomi

Hi I am new in python and I am exploring pyvmomi. Here I want to fetch vm info.Like I have one data center i.e "DataCenter1" In that data center there are two folders LinuxServer and WindowsServer these folder contains vms.So I want to fetch…
Student
  • 15
  • 1
  • 5
1
vote
1 answer

Add a list of regions to Vimeo using PyVimeo in django

I have a django app in which i am using PyVimeo module to connect and upload videos etc., to Vimeo The actual vimeo api to post the region data was here For example i have the following data [{u'country_name': u'CA'}, {u'country_name': u'US'}] to…
Shiva Krishna Bavandla
  • 25,548
  • 75
  • 193
  • 313
0
votes
0 answers

User tries to upload video to Vimeo using PyVimeo but constantly errors out

I'm writing a script to upload videos to a Vimeo account using Python and the PyVimeo library. I'm not the only one who uses the program as I share it with a few other people who need to upload to the same Vimeo account. One of these users has been…
0
votes
0 answers

How to get video links from subfolders in vimeo API?

I am trying vimeo API using python in a jupyter notebook. I want to access the links of videos located inside subfolders of a parent folder. I can get the links of all my videos with GET /me/videos?fields=link... but if I try setting the parent…
melguinha
  • 1
  • 1
0
votes
1 answer

How to use the 'query_fields' and 'query' options with Vimeo API?

I'm trying to get my head around Vimeo API with Python. I'm successful in the sense that I can use basic API requests e.g. to list all my videos or similar. Mostly, I use the /me/videos/ API endpoint. The API reference states, that there can be two…
Svenito
  • 188
  • 10
0
votes
1 answer

Trouble getting Vimeo filename from API using PyVimeo

I have an script using Python and PyVimeo that I am working on to use the "GEThttps://api.vimeo.com/videos/{video_id}" so I can get the file name. When I try to run my app, I am getting an error {'error': "The requested video couldn't be found."}.…
user3324136
  • 415
  • 5
  • 20
0
votes
1 answer

Get a list of all public video ID s for vimeo account

I have a free Vimeo account and few public videos. I need to download those videos. I can download a public video given its id with vimeo_dl. What I am trying is to get the list of video URIs or ids from my account. The official doc only explains…
Zabir Al Nazi
  • 10,298
  • 4
  • 33
  • 60
0
votes
1 answer

Using PyVimeo error 404 when create a live event

I am just starting the integration of vimeo on my web platform for lives (I have a premium account) Currently, the client connects well with this…
Camille Colvray
  • 420
  • 3
  • 16
0
votes
1 answer

Redirect_url ignored while Uploading to Vimeo API via Python Requests

I'm trying to upload a video to my Vimeo account from within a web-app, and the upload part is working, but I can't find a way to include the redirect_url option. In Postman it works, but in python it's just ignored. Here's the snippet: def…
Big Guy
  • 712
  • 1
  • 8
  • 21
0
votes
1 answer

Aiohttp : Is any way to detect whether username is wrong or password is wrong in aiohttp?

I want different message for wrong password and wrong username?? How to detect from response whether wrong username or wrong password?? auth = aiohttp.BasicAuth(username, password) with aiohttp.ClientSession(loop=loop, auth=auth) as…
0
votes
2 answers

Use PyVimeo from Anaconda

I'm trying to use the Vimeo API. In the documentation here it simply says to use pip install PyVimeo and it will install. Unfortunately that doesn't work for me. What I'm trying to accomplish is to be able to use the API to upload a bunch of videos…
Programming_Learner_DK
  • 1,509
  • 4
  • 23
  • 49
0
votes
1 answer

Get vimeo video info (Python) --- Different responses

When I make authorized call to Developer API to get video info for a specific video then I get response: { ... "files": [ ... ... { "quality": "hd", "type": "video/mp4", "width": 1280, "height": 720, …
Usman Maqbool
  • 3,351
  • 10
  • 31
  • 48