screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script> <script src="https://unpkg.com/axios/dist/axios.min.js"></script> </head> <body> <div id="app"></div> <script type="text/babel"> const { useState } = React; function App() { const [videoUrl, setVideoUrl] = useState('https://www.learningcontainer.com/wp-content/uploads/2020/05/sample-mp4-file.mp4'); const handleDownload = async () => { try { const response = await axios.get(videoUrl, { responseType: 'blob' }); const url = window.URL.createObjectURL(new Blob([response.data])); const link = document.createElement('a'); link.href = url; link.setAttribute('download', 'video.mp4'); // Set the desired file name and extension document.body.appendChild(link); link.click(); } catch (error) { console.error('Error downloading video:', error); } }; return ( <div className='container'> <h3 className='title'>React Js Download Video From Url | Link</h3> <input className='input-field' type="text" value={videoUrl} onChange={(e) => setVideoUrl(e.target.value)} placeholder="Enter video URL" /> <button onClick={handleDownload}>Download Video</button> </div> ); } ReactDOM.render(<App />, document.getElementById("app")); </script> <style> * { box-sizing: border-box; } .container { margin: 0 auto; width: 600px; text-align: center; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); padding: 20px; } .title { font-size: 24px; margin-bottom: 20px; color: #333; } .input-field { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; margin-bottom: 20px; } button { background-color: #007BFF; color: #fff; border: none; border-radius: 5px; padding: 10px 20px; cursor: pointer; } button:hover { background-color: #0056b3; } </style> </body> </html>