Please how can I get a software that can encode my movie to flash movie,
Adobe media encoder and its Adobe flash coulden`t work in my pc,problem of activation.

Is here any other soft ware that can do it for me perfectly, please kindly direct me to any movie encoder software that can do the same work for me, Adobe has not being kind at all

Dani AI

Generated

Good troubleshooting by — reinstalling the Flash tools often fixes activation/registration problems. Several people in the thread pointed at different encoders; one important context to add is that Adobe retired Flash Player as a delivery format (end of support December 31, 2020) and major browsers have removed or blocked it, so targeting Flash for new web playback is no longer recommended. (adobe.com)

For modern web publishing, target MP4 (H.264 video + AAC audio) as your primary file and provide a WebM fallback for browsers that prefer open codecs. Use the HTML5 <video> element rather than embedding SWF/FLV. Keep the source frame rate, use progressive scan, and pick bitrates appropriate to your resolution — practical bitrate guidelines are available from major platforms and are a good baseline for web delivery. (developer.mozilla.org)

A simple, reliable workflow: open your source in a GUI transcoder, choose an MP4/web preset (e.g., 1080p or 720p), set the video codec to H.264 and audio to AAC-LC (48 kHz), then export. For quality control you can use constant-quality (RF) mode or explicit average bitrates (example targets: 1080p ~8 Mbps, 720p ~5 Mbps). That produces web-ready files that play in browsers and on mobile without plugins. HandBrake is a solid free tool for this workflow. (handbrake.fr)

If you absolutely must support archived SWF/FLV files, do not ship Flash Player to end users; instead run them with an emulator (for local viewing or migration testing) or convert the media and rebuild the UI in HTML5. The Ruffle project is an actively developed Flash emulator that can run many SWFs in modern browsers. Example embed for converted files:

<video controls preload="metadata" poster="thumb.jpg">
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.webm" type="video/webm">
  Your browser does not support HTML5 video. <a href="movie.mp4">Download movie.mp4</a>
</video>

For migration and playback details, see the Ruffle docs and the MDN <video> guide. (ruffle.rs)

Recommended Answers

All 6 Replies

Theres also a good AVI to SWF converter in Camstudio, the free screen recording software.

the problem of adobe flash is solved, I uninstalled it and reinstall it back ,it work fine now thank you all, I will take note of the software that you advised me to use

Also, check out ffmpeg - free, fast, and converts just about anything to anything else in the video universe. Usually it is used on Linux, but there are Windows builds as well. Here is a link to those:

The main ffmpeg site is www.ffmpeg.org.

Adobe Media Encoder, usually comes with the CS range packages when you install Adobe Flash

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.