Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Pages Html Simple Animate FluxRadio

Community Beginner ,
Nov 18, 2019 Nov 18, 2019

Bonjour

je ne connais pas du tout adobe annimate, j'ai par le passée travailier un peu sur Flash et aprés sur edges

 

Je cherche à faire une pages trés simples avec deux elements à l'interieur:

- un fluxradio externe, (charger à partir d'une url)

-une video qui tourne en boucle.

Animate est il adapter pour cela?

 

Comment intergre ton de l'html à l'interieur, pour jouer le flux radio ?

Quel est la meilieurs méthode pour jouer en boucle une courte video légère ?

 

merci

 

 

 

TOPICS
Code , How to
247
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Nov 18, 2019 Nov 18, 2019

Forgive me, I'm relying on Google's auto translation of your question.

Based on what you are saying, Animate seems unnecessary for this project. This sounds like more of a job for Dreamweaver, or even just hand coding a simple web page with a text editor.

Here is a link to information on embeding radio streams into a web page:

https://www.radio-directory.me/embed-radio-station-web-page-using-html/ 

And adding a looping video is as simple as using the HTML5 video tag, here's some example code:

<video 
...
Translate
Explorer ,
Nov 18, 2019 Nov 18, 2019
LATEST

Forgive me, I'm relying on Google's auto translation of your question.

Based on what you are saying, Animate seems unnecessary for this project. This sounds like more of a job for Dreamweaver, or even just hand coding a simple web page with a text editor.

Here is a link to information on embeding radio streams into a web page:

https://www.radio-directory.me/embed-radio-station-web-page-using-html/ 

And adding a looping video is as simple as using the HTML5 video tag, here's some example code:

<video width="900" height="500" autoplay loop>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

I hope this helps, good luck on your project!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines