Dewon Lawton, please help. Thank you very kindly

Dani AI

Generated

The phrase "downloading moving images" is ambiguous. Common interpretations are simple animated graphics (GIF / animated WebP / APNG), self‑hosted video files (MP4 / WebM), or interactive/vector animations (Lottie). correctly flagged the upload/download wording, and ’s Flash suggestion reflects older practice — Flash is end‑of‑life and should not be used (see Adobe’s notice)[https://www.adobe.com/products/flashplayer/end-of-life.html].

For standard video on a page, the current best practice is the HTML5 <video> element. Use multiple source formats for wider browser support, include a poster thumbnail, and remember modern browsers require muted for autoplay. Example embed:

<video controls autoplay muted loop playsinline poster="thumb.jpg" width="640">
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.webm" type="video/webm">
  Your browser does not support the video tag.
</video>

For short looping animations, animated WebP or APNG gives much smaller files than GIF; WebP is broadly supported and recommended where possible (details)[https://developers.google.com/speed/webp]. Large videos should be optimized and served progressively (-movflags +faststart) or via a CDN. Conversion and optimization commonly use FFmpeg (examples and docs)[https://ffmpeg.org]. Example FFmpeg command to make a web‑friendly MP4:

ffmpeg -i input.mov -c:v libx264 -preset medium -crf 23 -c:a aac -b:a 128k -movflags +faststart output.mp4

Server setup notes: ensure correct MIME types (e.g., video/mp4, video/webm, image/webp), watch hosting bandwidth, and consider third‑party embeds (YouTube/Vimeo) or HLS/DASH for streaming. These choices cover the typical approaches missing from earlier replies and bring the advice up to current web standards.

Recommended Answers

All 2 Replies

I need help on downloading moving images to my website.

To my website ,so you must mean uploading .

"moving images"do you mean streaming video !
please add more info to you question

or do you mean flash object as in macromedia flash or shockwave object.
if u meant flash objects. then its fairly easy.
when you publish your animated objects, a html code is automatically created for u. open notebook program,check for the name of the file you published ending with .html.
Simply copy from the <object> part to the ending </object> part. paste the copied code into anywhere in your html source code of your project.
One more thing, u have to add the shockwave object to your web folder in your project by choosing add new item, look for where the shockwave.fla project was stored and add it to your web folder of your current document.
switch to your design view and drag it to a position that suits you
i hope this helps.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.