Posts & Repliespython SDK what is the difference between Dropbox.files_get_metadata and dropbox.files.FileMetadata? Which one should I use to get file server_Modified time? Solvedhow to get file_id, file_size metadata using filename gotten from file chooser (python) I have used dropbox file chooser to download files and filelinks. After I extract the filenames using the file chooser, I want to get more extended metadta. To do that I first went through Oau...SolvedMediaInfo for Photos and Videos I am working on extracting media information from photos and videos. So far I have used mediainfo=dbx.files_get_metadata(file_id=fileid, include_media_info=True).media_info to get MediaInfo which in...How to get file links to old versions using python Do old file versions have links as metadata? I can get link to the most recent version but want links to old versions as well. I did not see it inclued in the returned json value but wonder if I ca...Re: MediaInfo for Photos and Videos Thank you, you are the best. Re: MediaInfo for Photos and Videos Ok, I will keep that in mind. By the way, can I use similar codes to get metadata for videos? Re: MediaInfo for Photos and Videos Thanks, Greg. I think this works. Should I always set path=fileid whenever path is asked for? Re: how to get file_id, file_size metadata using filename gotten from file chooser (python) Thank you so much. You have been really helpful. I am able to get all the metadata I was looking for. Regards, Q Re: how to get file_id, file_size metadata using filename gotten from file chooser (python) Good catch. I tried using var obj = files[0]; to get the first file and I was able to get the fileid. But the filesize is still empty. Is it possible to get filesize here? Maybe I can get it late...Re: how to get file_id, file_size metadata using filename gotten from file chooser (python) Here is what I have: <script type="text/javascript" src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="kuxx5m7ap1npv24"></script> <script> var options= { mul...