
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (98)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8270)
-
ffmpeg uploaded file store path on cms
3 avril 2016, par Samir KarmacharyaIm using opencart and im trying to upload any video type and convert to mp4 format.
c :\ffmpeg\bin\ffmpeg -i D :\xampp\tmp\php81B6.tmp -vcodec copy -acodec copy image/video/video.mp4
and also try using absolute path
"c :\ffmpeg\bin\ffmpeg -i D :\xampp\tmp\php81B6.tmp -vcodec copy -acodec copy D :/xampp/htdocs/abc/image/video/video.mp4"
but unable to convert and move on my desire path.working code for core php`<?php
if(isset($_POST['submit'])){
$ffmpeg="c:\\ffmpeg\\bin\\ffmpeg";
$file_name=$_FILES['file']['name'];
$file_name=str_replace(' ','_', $file_name);
$videoFile=$_FILES['file']['tmp_name'];
$imageFile=$file_name.'.jpg';
$getFromSecond=5;
$size="720*590";
$cmd="$ffmpeg -i $videoFile -an -ss $getFromSecond -s $size $imageFile";//ffmpeg code
$cmd_video="$ffmpeg -i $videoFile -vcodec copy -acodec copy beight.mp4";//ffmpeg code
if(!shell_exec($cmd)){
echo "thumbnail created";
}else{
echo "error";
}
if(!shell_exec($cmd_video)){
echo "video create";
}else{
echo 'vidoe fail';
}
}
?>`above code create image and video convert but unable in cms due to path may be
-
ffserver : Fix off by 1 error in path
22 octobre 2017, par Michael Niedermayer -
Find the right path to my folder on server to execute cmd php
12 avril 2021, par Medsexec("ffmpeg -i $temp_name -r $FPS -vf scale='$resolutionWidth:$resolutionHeight' -b:v $bitrateVideo -bufsize $bitrateAudio videos/$videoURLnameTemp.mp4", $res);


This command works well locally, but once in production, the files are not stored in the video folder which is at the same level as the file in the server. Is there any way to get the output on the exec function to catch an error or something ? I tried the output by reference in the method but when I do a var_dump of the result, I get an array(0) {}.


I also tried to put the realpath in the path but it doesn't seem to work. ffmpeg is located at the same level as all files and the videos folder.