android - Download Video from Url using Retrofit -
i using retrofit consuming web services , far great. retrofit provide way download videos urls?
i checked link @streaming annotation not available anymore.retro fit image download
yes can utilize @streaming annotation available of version 1.6.0. create sure utilize version.
as specified in changelog: new: @streaming on response type skip buffering body byte[] before delivering.
interface api { @get("path/to/your/resource") @streaming response getdata(); } you should able stream straight inputstream so
response response = api.getdata() inputstream = response.getbody().in(); // stream info straight inputstream! keep in mind illustration synchronous simplicity.
android video-streaming download retrofit
No comments:
Post a Comment