const downloadVideo = (urls: string) => {
axios({
url,
method: 'GET',
responseType: 'blob',
}).then((response) => {
const urlObject = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = urlObject;
link.setAttribute('download', 'recording.mp4');
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
});
};