Alberto Iglesias Well-Known Member Licensed User Longtime User Jul 19, 2015 #1 How I can save my downloaded video to Album (Camera Roll)? My code is: In JobDone, after downloaded video url, I put: Dim strDown As String = Job.GetString Dim p As Phone p.AddVideoToAlbum(strDown) But not work, the method AddVideoToAlbum require (DIR and Filename) but where I can put the video? Thanks
How I can save my downloaded video to Album (Camera Roll)? My code is: In JobDone, after downloaded video url, I put: Dim strDown As String = Job.GetString Dim p As Phone p.AddVideoToAlbum(strDown) But not work, the method AddVideoToAlbum require (DIR and Filename) but where I can put the video? Thanks
narek adonts Well-Known Member Licensed User Longtime User Jul 20, 2015 #2 You can save in a temp folder at first and after that AddVideoToAlbum with the temp dir and filename. Upvote 0
You can save in a temp folder at first and after that AddVideoToAlbum with the temp dir and filename.