Video
Video
Dear Friends,
please inform me how can i put video files in text editor area in order to use multiple video or
by modules and how to use them.
Thanks in advance for helping me.
please inform me how can i put video files in text editor area in order to use multiple video or
by modules and how to use them.
Thanks in advance for helping me.
-
- Beiträge: 3217
- Registriert: Do 21. Okt 2004, 11:08
- Wohnort: Augsburg
- Hat sich bedankt: 4 Mal
- Danksagung erhalten: 19 Mal
- Kontaktdaten:
Re: Video
Hi ilias,
there exists a FLV player module for Contenido, which you can use to embed videos into pages, see http://forum.contenido.org/viewtopic.php?f=60&t=22038.
Maybe http://translate.google.de/ will help you to understand the german maual.
Regards
xmurrix
there exists a FLV player module for Contenido, which you can use to embed videos into pages, see http://forum.contenido.org/viewtopic.php?f=60&t=22038.
Maybe http://translate.google.de/ will help you to understand the german maual.
Regards
xmurrix
CONTENIDO Downloads: CONTENIDO 4.10.1
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
-
- Beiträge: 3217
- Registriert: Do 21. Okt 2004, 11:08
- Wohnort: Augsburg
- Hat sich bedankt: 4 Mal
- Danksagung erhalten: 19 Mal
- Kontaktdaten:
Re: Video
FLV Player module uses the well known JW FLV Media Player, and this player doesn't supports the avi format.ilias hat geschrieben:Thanks for your quick reply but can i also put video in avi format??
http://developer.longtailvideo.com/trac ... er5Formats
I suppose you have to convert them to flv format, avi needs a installed divx codec and a divx player on clients os...
CONTENIDO Downloads: CONTENIDO 4.10.1
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
Re: Video
I followed the instructions (step)of the module how to upload a video in flv .
But it does not seems in a browser.
Can you help me??
But it does not seems in a browser.
Can you help me??
-
- Beiträge: 3217
- Registriert: Do 21. Okt 2004, 11:08
- Wohnort: Augsburg
- Hat sich bedankt: 4 Mal
- Danksagung erhalten: 19 Mal
- Kontaktdaten:
Re: Video
Hi ilias,ilias hat geschrieben:...But it does not seems in a browser.
i need more info about your issue with the FLV module. It's difficult to help without some details.
Does the generated Markup contains a correct generated FLV Player element or do you get some JS errors?
Firefox's Error Console and a installed Firebug extension may help you to detect some mistakes.
Regards
xmurrix
CONTENIDO Downloads: CONTENIDO 4.10.1
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
Re: Video
Dear xmurrix,
First, i made the changes in the output filed of flv module as the creator said. See it below,
if (($cms_filename != '0') || ($cms_fileadress != '0')) {
if(($cms_filename != '0') && ($cms_fileadress == '')){
$video = "http://www.elife-24.eu/cms/upload/".$cm ... s_filename;
$thumb = "http://www.elife-24.eu/cms/upload/".$cm ... name_thumb;
$logo = "http://www.elife-24.eu/cms/upload/".$cm ... ename_logo;
$mpl = "http://www.elife-24.eu/cms/upload/".$cm ... lename_mpl;
} else if(($cms_filename == '0') && ($cms_fileadress != '')){
$video = $cms_fileadress;
$thumb = "upload/".$cms_dirname_thumb.$cms_filename_thumb;
$logo = "upload/".$cms_dirname_logo.$cms_filename_logo;
$skin = "upload/".$cms_dirname_skin.$cms_filename_skin;
$mpl = "upload/".$cms_dirname_mpl.$cms_filename_mpl;
}
But in the followind address you'll see a grey line instead of video
http://www.elife-24.eu/cms/front_content.php
at the configuration, in the first field that says to call the file, i wrote player.swf as the example of the creator of module said.
What else details do you want ???
Thanks in advance
Best Regards
ILIAS
First, i made the changes in the output filed of flv module as the creator said. See it below,
if (($cms_filename != '0') || ($cms_fileadress != '0')) {
if(($cms_filename != '0') && ($cms_fileadress == '')){
$video = "http://www.elife-24.eu/cms/upload/".$cm ... s_filename;
$thumb = "http://www.elife-24.eu/cms/upload/".$cm ... name_thumb;
$logo = "http://www.elife-24.eu/cms/upload/".$cm ... ename_logo;
$mpl = "http://www.elife-24.eu/cms/upload/".$cm ... lename_mpl;
} else if(($cms_filename == '0') && ($cms_fileadress != '')){
$video = $cms_fileadress;
$thumb = "upload/".$cms_dirname_thumb.$cms_filename_thumb;
$logo = "upload/".$cms_dirname_logo.$cms_filename_logo;
$skin = "upload/".$cms_dirname_skin.$cms_filename_skin;
$mpl = "upload/".$cms_dirname_mpl.$cms_filename_mpl;
}
But in the followind address you'll see a grey line instead of video
http://www.elife-24.eu/cms/front_content.php
at the configuration, in the first field that says to call the file, i wrote player.swf as the example of the creator of module said.
What else details do you want ???
Thanks in advance
Best Regards
ILIAS
-
- Beiträge: 3217
- Registriert: Do 21. Okt 2004, 11:08
- Wohnort: Augsburg
- Hat sich bedankt: 4 Mal
- Danksagung erhalten: 19 Mal
- Kontaktdaten:
Re: Video
The module outputs following URL to the video:
http://www.elife-24.eu/cms/upload/00
I'm not familiar with this module but i suppose there is something wrong with the module configuration.
Drop me some lines by pm containing the access to your Contenido backend, i'll check this...
Regards
xmurrix
http://www.elife-24.eu/cms/upload/00
I'm not familiar with this module but i suppose there is something wrong with the module configuration.
Drop me some lines by pm containing the access to your Contenido backend, i'll check this...
Regards
xmurrix
CONTENIDO Downloads: CONTENIDO 4.10.1
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.