Skip to main content
Known Participant
November 18, 2019
Answered

Pages Html Simple Animate FluxRadio

  • November 18, 2019
  • 1 reply
  • 300 views

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

 

 

 

This topic has been closed for replies.
Correct answer Just Some Knucklehead

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!

1 reply

Just Some KnuckleheadCorrect answer
Inspiring
November 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 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!