|
6 | 6 | <meta name="robots" content="noindex"> |
7 | 7 |
|
8 | 8 | <link |
9 | | - rel="stylesheet" |
| 9 | + rel="preload" |
10 | 10 | href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600&family=Kanit:wght@600&display=swap" |
| 11 | + as="style" |
| 12 | + onload="this.onload=null;this.rel='stylesheet'" |
11 | 13 | /> |
| 14 | + <noscript> |
| 15 | + <link |
| 16 | + rel="stylesheet" |
| 17 | + href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600&family=Kanit:wght@600&display=swap" |
| 18 | + /> |
| 19 | + </noscript> |
12 | 20 | <link |
13 | 21 | rel="stylesheet" |
14 | 22 | href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" |
|
30 | 38 | <link rel="stylesheet" href="https://shotstack.io/assets/css/main.css" /> |
31 | 39 | <link rel="stylesheet" href="styles.css" /> |
32 | 40 |
|
33 | | - <title>Convert MP4 to MOV Shotstack Demo</title> |
| 41 | + <title>MP4 to MOV Converter (Online & API) - Shotstack</title> |
34 | 42 | <meta |
35 | 43 | name="description" |
36 | | - content="Convert an MP4 video to MOV format using the Shotstack Ingest API. This demo shows you how to upload a video and convert it." |
| 44 | + content="Convert MP4 to MOV online for free. Upload a file or paste a URL, preview, and download your MOV. Open-source demo powered by Shotstack Ingest API." |
37 | 45 | /> |
| 46 | + <link rel="canonical" href="https://shotstack.io/demo/mp4-to-mov/" /> |
| 47 | + |
| 48 | + <script type="application/ld+json"> |
| 49 | + { |
| 50 | + "@context": "https://schema.org", |
| 51 | + "@type": "WebApplication", |
| 52 | + "name": "MP4 to MOV Converter", |
| 53 | + "url": "https://shotstack.io/demo/mp4-to-mov/", |
| 54 | + "applicationCategory": "Multimedia", |
| 55 | + "operatingSystem": "Web", |
| 56 | + "description": "Use our free demo to convert MP4 to MOV online in minutes - ideal for QuickTime and editing tools. Works with all browsers. This demo is developed using the Shotstack Ingest API.", |
| 57 | + "provider": { |
| 58 | + "@type": "Organization", |
| 59 | + "name": "Shotstack" |
| 60 | + }, |
| 61 | + "offers": { |
| 62 | + "@type": "Offer", |
| 63 | + "price": "0", |
| 64 | + "priceCurrency": "USD", |
| 65 | + "description": "Free tier" |
| 66 | + }, |
| 67 | + "potentialAction": { |
| 68 | + "@type": "Action", |
| 69 | + "name": "Convert Video", |
| 70 | + "description": "Convert MP4 video to MOV format", |
| 71 | + "target": "https://shotstack.io/demo/mp4-to-mov/" |
| 72 | + } |
| 73 | + } |
| 74 | + </script> |
38 | 75 | </head> |
39 | 76 | <body> |
40 | 77 | <div class="container content my-4"> |
| 78 | + <header> |
| 79 | + <h1 class="display-4">MP4 to MOV Converter</h1> |
| 80 | + <p class="lead">Use our free demo to convert MP4 to MOV online in minutes - ideal for QuickTime and editing tools. Works with all browsers. This demo is developed using the Shotstack Ingest API.</p> |
| 81 | + </header> |
41 | 82 | <div class="row"> |
42 | | - <div class="col-5"> |
| 83 | + <div class="col-lg-5 mb-4 mb-lg-0"> |
43 | 84 | <form class="jumbotron" method="post"> |
44 | 85 | <div class="form-group video-group"> |
45 | 86 | <label><b>Source video</b></label> |
46 | 87 | <small class="form-text text-muted float-right"> |
47 | 88 | Max file size: 250MB |
48 | 89 | </small> |
49 | 90 | <div class="row mb-3"> |
50 | | - <div class="col-6"> |
| 91 | + <div class="col-sm-6 col-12 mb-2 mb-sm-0"> |
51 | 92 | <button |
52 | 93 | type="button" |
53 | 94 | class="btn btn-secondary w-100 upload-button toggle-button" |
|
65 | 106 | <i class="fas fa-upload upload-icon"></i> Upload |
66 | 107 | </button> |
67 | 108 | </div> |
68 | | - <div class="col-6"> |
| 109 | + <div class="col-sm-6 col-12"> |
69 | 110 | <button |
70 | 111 | type="button" |
71 | 112 | class="btn btn-secondary w-100 url-button toggle-button" |
72 | | - data-toggle="collapse" |
| 113 | + data-bs-toggle="collapse" |
73 | 114 | href="#urlExpand" |
74 | 115 | role="button" |
75 | 116 | aria-expanded="false" |
|
122 | 163 | </a> |
123 | 164 | </div> |
124 | 165 | </div> |
125 | | - <div class="col-7 video-container"> |
| 166 | + <div class="col-lg-7 video-container"> |
126 | 167 | <div id="instructions" class="row justify-content-center align-items-center"> |
127 | 168 | <div class="col-12 text-center jumbotron border"> |
128 | 169 | <p>Your converted MP4 to MOV file will play here.</p> |
129 | 170 | </div> |
130 | 171 | </div> |
131 | 172 | <div id="status" class="row justify-content-center align-items-center d-none"> |
132 | | - <div class="col-6 text-center"> |
| 173 | + <div class="col-sm-6 text-center"> |
133 | 174 | <i class="fas fa-2x"></i> |
134 | 175 | <p></p> |
135 | 176 | <div class="progress" style="height: 2px"> |
|
141 | 182 | aria-valuemax="100" |
142 | 183 | ></div> |
143 | 184 | </div> |
144 | | - <small>Hold tight, processing may take a minute...</small> |
| 185 | + <small>Hold tight, converting may take a minute...</small> |
145 | 186 | </div> |
146 | 187 | </div> |
147 | | - <video id="player" playsinline controls></video> |
148 | | - <div id="json" class="row"> |
| 188 | + <video id="player" playsinline controls class="d-none mb-0"></video> |
| 189 | + <div id="json" class="row d-none mt-3"> |
149 | 190 | <div class="col mt-4"> |
150 | 191 | <p class="text-center"> |
151 | 192 | <a |
|
159 | 200 | </a> |
160 | 201 | <a |
161 | 202 | class="btn btn-primary ml-2" |
162 | | - data-toggle="collapse" |
| 203 | + data-bs-toggle="collapse" |
163 | 204 | href="#jsonExpand" |
164 | 205 | role="button" |
165 | 206 | aria-expanded="false" |
|
177 | 218 | </div> |
178 | 219 | </div> |
179 | 220 | </div> |
| 221 | + |
| 222 | + <div class="row mt-5"> |
| 223 | + <div class="col-12"> |
| 224 | + <h2 class="h3 text-brand fw-bold mb-3">How to convert MP4 to MOV?</h2> |
| 225 | + <p><strong>Step 1:</strong> Upload a video or paste a link/URL.</p> |
| 226 | + <p><strong>Step 2:</strong> Click the convert video button to start your MP4 to MOV process.</p> |
| 227 | + <p><strong>Step 3:</strong> Your MOV file will be available for preview and download after processing. Enjoy!</p> |
| 228 | + </div> |
| 229 | + </div> |
| 230 | + |
| 231 | + <div class="row mt-4"> |
| 232 | + <div class="col-12"> |
| 233 | + <h2 class="h3 text-brand fw-bold mb-3">About MP4 and MOV (what changes when you convert)</h2> |
| 234 | + <p>MP4 and MOV are both video containers. MP4 is widely used for web delivery; MOV is Apple's QuickTime container and is common in editing workflows. Converting MP4→MOV changes the container format. This demo uses the best approach: if your source codec is MOV-compatible, it copies without re-encoding; otherwise, it converts to H.264 for broad compatibility. Audio is handled similarly to ensure compatibility with QuickTime and most editors.</p> |
| 235 | + </div> |
| 236 | + </div> |
| 237 | + |
| 238 | + <div class="row mt-4"> |
| 239 | + <div class="col-12"> |
| 240 | + <h2 class="h3 text-brand fw-bold mb-3">When to use MOV instead of MP4</h2> |
| 241 | + <p>Choose MOV when you need maximum compatibility with Apple tools (QuickTime, Final Cut Pro) or when a client or editor specifically requests a .mov. For general web playback and smaller files, MP4 is usually the better choice. If your goal is simple viewing or sharing online, keep MP4; if your workflow involves QuickTime-centric review or handoff to an editor, use MOV.</p> |
| 242 | + </div> |
| 243 | + </div> |
| 244 | + |
| 245 | + <div class="row mt-4"> |
| 246 | + <div class="col-12"> |
| 247 | + <h2 class="h3 text-brand fw-bold mb-3">Privacy & security</h2> |
| 248 | + <p>Files are securely transferred over HTTPS and stored temporarily only to complete your conversion. We automatically delete source files and outputs shortly after processing. Your content is not used to train models.</p> |
| 249 | + <p>The open-source code for this project is available on <a href="https://github.com/shotstack/mp4-to-mov-demo" target="_blank">GitHub</a>. It can serve as a foundation for anyone looking to create their own automated media conversion tool.</p> |
| 250 | + </div> |
| 251 | + </div> |
| 252 | + |
| 253 | + <div class="row mt-4"> |
| 254 | + <div class="col-12"> |
| 255 | + <h2 class="h3 text-brand fw-bold mb-3">Do more with Shotstack (for frequent conversions)</h2> |
| 256 | + <p>If you only need the occasional MP4→MOV, this demo is perfect. If you're converting lots of files, or need editor-friendly outputs on a schedule, <a href="https://shotstack.io/product/video-editing-api/" target="_blank">Shotstack's APIs</a> can automate it - queue jobs, process at scale, receive webhooks when they finish, and deliver files via CDN.</p> |
| 257 | + <p><a href="https://dashboard.shotstack.io/register" target="_blank">Sign up</a> and get started for free (no credit card needed).</p> |
| 258 | + </div> |
| 259 | + </div> |
| 260 | + |
| 261 | + <div class="row mt-4"> |
| 262 | + <div class="col-12"> |
| 263 | + <h2 class="h3 text-brand fw-bold mb-4 pb-2 section-divider">Frequently asked questions (FAQs)</h2> |
| 264 | + |
| 265 | + <div class="accordion faq-accordion" id="faqAccordion"> |
| 266 | + <div class="accordion-item"> |
| 267 | + <h3 class="accordion-header"> |
| 268 | + <button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#faq1" aria-expanded="true" aria-controls="faq1"> |
| 269 | + Does converting MP4 to MOV improve video quality? |
| 270 | + </button> |
| 271 | + </h3> |
| 272 | + <div id="faq1" class="accordion-collapse collapse show" data-bs-parent="#faqAccordion"> |
| 273 | + <div class="accordion-body"> |
| 274 | + No - changing containers doesn't increase quality. This demo automatically copies your source codec if it's compatible with MOV, or converts to H.264 if needed. Quality depends on your source file and what conversion (if any) occurs. |
| 275 | + </div> |
| 276 | + </div> |
| 277 | + </div> |
| 278 | + |
| 279 | + <div class="accordion-item"> |
| 280 | + <h3 class="accordion-header"> |
| 281 | + <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2" aria-expanded="false" aria-controls="faq2"> |
| 282 | + Can I get a ProRes MOV from this demo? |
| 283 | + </button> |
| 284 | + </h3> |
| 285 | + <div id="faq2" class="accordion-collapse collapse" data-bs-parent="#faqAccordion"> |
| 286 | + <div class="accordion-body"> |
| 287 | + The demo outputs a MOV file with the same codec as the source video. If the codec is incompatible it will default to H.264. |
| 288 | + </div> |
| 289 | + </div> |
| 290 | + </div> |
| 291 | + |
| 292 | + <div class="accordion-item"> |
| 293 | + <h3 class="accordion-header"> |
| 294 | + <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq3" aria-expanded="false" aria-controls="faq3"> |
| 295 | + Can I convert MP4 to MOV from a Google Drive/Dropbox link? |
| 296 | + </button> |
| 297 | + </h3> |
| 298 | + <div id="faq3" class="accordion-collapse collapse" data-bs-parent="#faqAccordion"> |
| 299 | + <div class="accordion-body"> |
| 300 | + Use a direct download URL. If the link requires you to be logged in or expires quickly, download the file locally and upload it here. |
| 301 | + </div> |
| 302 | + </div> |
| 303 | + </div> |
| 304 | + |
| 305 | + <div class="accordion-item"> |
| 306 | + <h3 class="accordion-header"> |
| 307 | + <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq4" aria-expanded="false" aria-controls="faq4"> |
| 308 | + What's the file size limit? |
| 309 | + </button> |
| 310 | + </h3> |
| 311 | + <div id="faq4" class="accordion-collapse collapse" data-bs-parent="#faqAccordion"> |
| 312 | + <div class="accordion-body"> |
| 313 | + 250MB per file in the demo. For larger files or batches, use the Shotstack Ingest API directly. |
| 314 | + </div> |
| 315 | + </div> |
| 316 | + </div> |
| 317 | + |
| 318 | + <div class="accordion-item"> |
| 319 | + <h3 class="accordion-header"> |
| 320 | + <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq5" aria-expanded="false" aria-controls="faq5"> |
| 321 | + Is MOV better for Final Cut or QuickTime? |
| 322 | + </button> |
| 323 | + </h3> |
| 324 | + <div id="faq5" class="accordion-collapse collapse" data-bs-parent="#faqAccordion"> |
| 325 | + <div class="accordion-body"> |
| 326 | + MOV is the native QuickTime container and works well in Apple tools. For simple playback or web delivery, MP4 is typically smaller. Choose based on your workflow. |
| 327 | + </div> |
| 328 | + </div> |
| 329 | + </div> |
| 330 | + </div> |
| 331 | + </div> |
| 332 | + </div> |
| 333 | + |
180 | 334 | </div> |
181 | 335 | <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> |
182 | 336 | <script |
183 | | - src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" |
184 | | - integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" |
| 337 | + src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" |
| 338 | + integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" |
185 | 339 | crossorigin="anonymous" |
186 | 340 | ></script> |
187 | | - <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> |
188 | 341 | <script src="https://cdn.plyr.io/3.7.8/plyr.js"></script> |
189 | | - <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.5.4/umd/popper.min.js"></script> |
190 | 342 | <script src="app.js"></script> |
191 | 343 | </body> |
192 | 344 | </html> |
0 commit comments