Diferencia entre revisiones de «30/Plugins multimedia FAQ»

De MoodleDocs
(fix typo in links)
(tidy up)
 
(No se muestran 5 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
{{Filtros}}
{{Filtros}}{{Versiones|Esta documentación es para Moodle 3.0 y anteriores. La documentación más moderna está en [[Plugins multimedia FAQ]].}}
{{Pendiente de traducir}}
 
==What is the best way of Embedding media in Moodle?==
==¿Cual es la mejor manera de incrustar media (multimedia) en Moodle?==


"Best" depends on your goal. There are ways which are simpler, involving fewer steps, but it depends on how you wish your video to appear.
"Best" depends on your goal. There are ways which are simpler, involving fewer steps, but it depends on how you wish your video to appear.
Línea 20: Línea 20:
4) You can also use any repository that allows you to search for and add links to media, such as the Youtube repository.
4) You can also use any repository that allows you to search for and add links to media, such as the Youtube repository.


== The video player is not appearing for me. I only see a link or embed code text.==
== El video no me está apareciendo. Solamente veo un enlace o texto de código incrustado==


Make sure that the "Multimedia plugins" option in ''Site administration > Plugins > Filters > Manage filters'' is set to On.
Make sure that the "Multimedia plugins" option in ''Site administration > Plugins > Filters > Manage filters'' is set to On.
Línea 26: Línea 26:
Note: the order of Filters matters, as they are processed in order such that one filter may affect another. You may need to adjust the order. See [[Filtros]] and [[Filtro de plugins multimedia]] for more.
Note: the order of Filters matters, as they are processed in order such that one filter may affect another. You may need to adjust the order. See [[Filtros]] and [[Filtro de plugins multimedia]] for more.


== Links and embeds to Vimeo based videos are not working but others are. Why? ==
== Los enlaces y las incrustaciones de videos basados en Vimeo no están funcionando, pero otros si funcionan. ¿Porqué? ==


Embedding for Vimeo is off by default in Moodle, unlike Youtube. Go to ''Site administration > Appearance > Media embedding'' and enable the Vimeo option.
Embedding for Vimeo is off by default in Moodle, unlike Youtube. Go to ''Site administration > Appearance > Media embedding'' and enable the Vimeo option.


==How can I have embedded media resized appropriately?==
==¿Cómo puedo hacer para cambiar el tamaño de medios incrustados apropiadamente?==
You can adjust the specific dimensions for height and width inside the embed code of the <iframe> tag.
You can adjust the specific dimensions for height and width inside the embed code of the <iframe> tag.
<pre>
<pre>
Línea 37: Línea 37:
where 400x560 are the dimensions in pixels that you wish to use.
where 400x560 are the dimensions in pixels that you wish to use.


==See also==
==Vea también==


* [[Editing_text| Using the Atto editor]]
* [[Editando_texto| Usando el editor Atto]]
* [[Multimedia_plugins_filter|Multimedia plugins filter]]
* [[Filtro de plugins multimedia]]
* [[Video]]
* [[Video]]
* Also [http://moodle.org/mod/forum/discuss.php?d=194684 Moodle Media player not appearing] forum discussion
* Also [http://moodle.org/mod/forum/discuss.php?d=194684 Moodle Media player not appearing] forum discussion
[[Category:FAQ]]


[[en:Multimedia plugins FAQ]]
[[en:Multimedia plugins FAQ]]

Revisión actual - 15:19 19 feb 2017

note icon.png Existe documentación diferente para varias versiones de Moodle: Esta documentación es para Moodle 3.0 y anteriores. La documentación más moderna está en Plugins multimedia FAQ.


¿Cual es la mejor manera de incrustar media (multimedia) en Moodle?

"Best" depends on your goal. There are ways which are simpler, involving fewer steps, but it depends on how you wish your video to appear.

1) Use the Media button on the Atto editor to add the URL to a external video file such as on Youtube or Vimeo or any other accessible source.

You can do this for any resource or activity that has the editor, eg. Label, Page, etc. The video itself will not show up in the editor, you need to save the editor content first, then the video will display on the course page.

"Screenshot of Insert media box in Atto"

2) Alternatively, you can use the Link button in the Atto editor to add the URL to an external video in a similar way.

3) If have an <iframe> style embed code such as from Youtube, then in the Atto editor turn on HTML mode and paste the the code. The when you turn off HTML mode, the video will show up in the editor window so you can see it.

"Screenshot of example iframe pasted in HTML mode in Atto"


4) You can also use any repository that allows you to search for and add links to media, such as the Youtube repository.

El video no me está apareciendo. Solamente veo un enlace o texto de código incrustado

Make sure that the "Multimedia plugins" option in Site administration > Plugins > Filters > Manage filters is set to On.

Note: the order of Filters matters, as they are processed in order such that one filter may affect another. You may need to adjust the order. See Filtros and Filtro de plugins multimedia for more.

Los enlaces y las incrustaciones de videos basados en Vimeo no están funcionando, pero otros si funcionan. ¿Porqué?

Embedding for Vimeo is off by default in Moodle, unlike Youtube. Go to Site administration > Appearance > Media embedding and enable the Vimeo option.

¿Cómo puedo hacer para cambiar el tamaño de medios incrustados apropiadamente?

You can adjust the specific dimensions for height and width inside the embed code of the <iframe> tag.

<iframe src="https://www.youtube.com/embed/wop3FMhoLGs" allowfullscreen="" frameborder="0" height="400" width="560"></iframe>

where 400x560 are the dimensions in pixels that you wish to use.

Vea también