
Recherche avancée
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7656)
-
Converting a large number of MP3 files to videos for YouTube, each using same the JPEG image
25 juin 2020, par DavidI am looking for a way to convert large number of MP3 files to videos, each using the same image. Efficient processing time is important.


I tried the following :


ffmpeg -i image.jpg -i audio.mp3 -vcodec libx264 video.mp4



VLC media player played the resulting video file with the correct sound, but a blank screen.


Microsoft Media Player played the sound and showed the intended image. I uploaded the video to YouTube and received the message :




"The video has failed to process. Please make sure you are uploading a supported file type."




How can I make this work ?


-
Anomalie #3523 : Gestion des plugins avec spip 3.0.20
5 août 2015, par Gilles VINCENTen ajoutant la directive
opcache.validate_timestamps=0
à ma config php, comme conseillé dans http://wiki.mikejung.biz/PHP_OPcache pour un serveur en production, la page de gestion des plugins refonctionne à nouveau correctement. De plus, la valeur
opcache.revalidate_freq=60
(valeur par défaut fournie lors de l’install) est vraiment longue.
Si je commente cette ligne dans le fichier de config, le phpinfo() indique une valeur plus raisonnable de 2 seulement.
Je pense que le chargement méga long venait de cette constante.La différence de comportement avec la config "pour développement" entre une 3.0.19 et une 3.0.20 reste encore surprenante.
Si j’ai le temps, je creuserai dans une semaine à mon retour de vacance, car tout le monde ne peut as jouer avec ces paramètres du serveur... :/ -
How to encode ffmepg for jwplayer script which script read pass php file ?
25 décembre 2013, par Sarun PrasomsriI have encoded my video use this command.
$encode_comand="ffmpeg -i $input_path -ac 1 -ab 128k -y -vcodec libx264 -vpre ultrafast -g 30 -r 30 -crf 22 $target_path &";
exec($encode_comand);And it work for script below
echo '
<div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
<code class="echappe-js"><script type="text/javascript" src="http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js"></script><script type="text/javascript">jwplayer.key="OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==";</script>
<script type="text/javascript"><br />
jwplayer("mediaplayer&#39;."11111".&#39;").setup({<br />
flashplayer: "jwplayer/jwplayer.flash.swf",<br />
file: "$video_file", <br />
width: "&#39;.$width.&#39;",<br />
height: "&#39;.$height.&#39;",<br />
stretching: "uniform",<br />
type: "mp4",<br />
skin: "jwplayer/jwplayer-skins-free/six.xml",<br />
<br />
});<br />
</script>'
//$video_file="http://myhost.com/project/files/1/video/file3.mp4" ;
But After I chang script
echo '
<div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
<code class="echappe-js"><script type="text/javascript" src="http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js"></script><script type="text/javascript">jwplayer.key="OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==";</script>
<script type="text/javascript"><br />
jwplayer("mediaplayer&#39;."11111".&#39;").setup({<br />
flashplayer: "jwplayer/jwplayer.flash.swf",<br />
file: "readfile.php", <br />
width: "&#39;.$width.&#39;",<br />
height: "&#39;.$height.&#39;",<br />
stretching: "uniform",<br />
type: "mp4",<br />
skin: "jwplayer/jwplayer-skins-free/six.xml",<br />
abouttext: "project",<br />
aboutlink: "project",<br />
});<br />
</script>'
It not work for my video encode,But i try video that not encode it work.
Video
Dimension : 853 x 840
codec : H.264
Framerate : 30 frames per second
Bitrate 408 kbps
Audio
codec : MPEG-4 AAC
channels : Stero
Sample rate : 44100 Hz ์
Bitrate : N/AReadfile.php that have function read file
<?php
$filename= 'http://www.longtailvideo.com/jw/upload/bunny.mp4'; //can read
$video_file = "http://myhost.com/project/files/1/video/file3.mp4";
//cannot read Same file as script below
if (file_exists($video_file)) { ob_clean(); flush(); };
header('Content-Type: video/mp4');
header('Content-Disposition: attachment;filename=file.mp4');
readfile($video_file);
?>Thank you