-
1. Re: Need an idea or help to let people choose video
kglad Sep 13, 2017 7:21 AM (in response to lijot33408954)1 person found this helpfulyes, this can be done with adobe animate cc (used to be called flash).
but there's no way that's easy. no mater whether you use animate or some other tool, you still have to deal with apple and get the app onto itunes and that's not easy.
you can get help doing that (on the animate forum for help using animate - which is the easy part) and also for the apple part. but you can expect to invest, at least, 20 hrs of learning to get this done. oh, and it will cost you $99 for an apple license.
or you can hire someone (eg, me) to do this for you.
-
2. Re: Need an idea or help to let people choose video
lijot33408954 Sep 13, 2017 10:50 PM (in response to kglad)Thank you for replying. I had another idea of creating a custom webpage and placing these videos. But I don't know if it will be as I expect it to be.
I cannot hire someone. This is my first job.
-
3. Re: Need an idea or help to let people choose video
kglad Sep 14, 2017 8:44 AM (in response to lijot33408954)1 person found this helpfuladobe animate can do that too.
you would create an html5 project (so it can be viewed by mobile devices) and would be much easier than making a mobile app and getting that on itunes. with a little time and effort (and help on the animate forum) you could get that up and running without hiring anyone.
-
4. Re: Need an idea or help to let people choose video
Nancy OShea Sep 14, 2017 12:06 PM (in response to lijot33408954)1 person found this helpfulHTML5 <video> with MP4 files is the web standard now. It has replaced Flash & QuickTime MOV. No special players or plugins required. It's natively supported by all browsers and web devices.
You could build a web page in Dreamweaver or Brackets in less than 20 minutes. The basic HTML code is not complicated. See below.
<!DOCTYPE html >
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>HTML5 Video Example</title>
</head>
<body>
<video controls poster="YOUR_POSTER_IMAGE.jpg">
<source src="YOUR_VIDEO1.mp4" type="video/mp4">
</video>
<video controls poster="YOUR_POSTER_IMAGE.jpg">
<source src="YOUR_VIDEO2.mp4" type="video/mp4">
</video>
<video controls poster="YOUR_POSTER_IMAGE.jpg">
<source src="YOUR_VIDEO3.mp4" type="video/mp4">
</video>
</body>
</html>
-
5. Re: Need an idea or help to let people choose video
Sheena KaulSep 15, 2017 5:15 AM (in response to lijot33408954)
Moving to Adobe Animate CC - General
-
6. Re: Need an idea or help to let people choose video
lijot33408954 Sep 15, 2017 6:28 AM (in response to kglad)Thank you so much for the reply. It's awesome when people help out each other. Appreciate it.
-
7. Re: Need an idea or help to let people choose video
lijot33408954 Sep 15, 2017 6:30 AM (in response to Nancy OShea)Thanks for helping out
I'll try Dreamweaver as you suggested.
-
8. Re: Need an idea or help to let people choose video
kglad Sep 15, 2017 6:51 AM (in response to lijot33408954)you're welcome.