
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 (27)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Les thèmes de MediaSpip
4 juin 20133 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
Thèmes MediaSPIP
3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)
Sur d’autres sites (3771)
-
Handling Unknown encoder with ffmpeg hardware acceleration
23 septembre 2018, par GabrielleI am having a heavy use of CPU from ffmpeg to record my screen.
To solve this, I am trying to use hardware acceleration. The problem is that my program is intended to run in different platforms...
I would like to know if there is a way to say "use any hardware acceleration available or none if none is available"...
I tried to use
-c:v h264_nvenc -allow-sw 1
in hope that, since I was testing on a Mac and I don’t have this encoding, the software encoding would be used instead, but this did not happened, instead, the entire command crashed. -
ffmpeg "Automatic encoder selection failed for output stream"
6 octobre 2018, par polmonroigI am trying to convert a video file from mp4 to exr but I am getting this error with this command in ffmpeg.
Command
ffmpeg -i 'video.MP4' 'video.%04d.exr'
Error
Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec exr) is probably disabled. Please choose an encoder manually.
Error selecting an encoder for stream 0:0I hope someone can help me, I am really lost.
Thank you !
-
How to install ffmpeg and convert videos to mp4 in PHP ?
21 octobre 2018, par loot vergeI downloaded the latest version of ffmpeg.exe. How can I use it in order to convert videos to mp4 using PHP script and Do I need to install the ffmpeg.exe in order for me to use it if so, how can I install it properly ? I am using the latest version XAMPP. I have seen many sites with tutorial but none of the have the proper information to install and use ffmpeg. I hope you guys can help me. I tried to copy the ffmpeg.exe in the folder of my site and tried the code below I am getting an error
if(exec("ffmpeg.exe")){
echo "ok";
}
else {
echo "error";
}