Is there a way to download one or multiple videos into a download folder using a function in Angular? Do I need to convert the URL into a blob for this task?
Consider an array structured like the following:
videos:[
{
selected: true,
url:'https://13-lvl3-pdl.vimeocdn.com/01/2113/3/85569724/224036863.mp4?expires=1500882066&token=0369919720650b346b338',
description:'video1'
},
{
selected: false,
url:'https://13-lvl3-pdl.vimeocdn.com/01/2113/3/85569724/224036863.mp4?expires=1500882066&token=0369919720650b346b338',
description:'video2'
}
]
The goal is to only download the selected videos. Is it possible to achieve this functionality with a service?