Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (44)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6070)

  • How To fix "PHP Fatal error : Class 'ffmpeg_movie' not found" Error in PHP

    19 janvier 2019, par Ajay Katariya

    I have installed FFMPEG in my server for video conversions into different sizes of videos within my WordPress site running on PHP 5.6/Linux. Previously all things were working fine but today suddenly I got one error like :

    "PHP Fatal error : Class ’ffmpeg_movie’ not found".

    PHP Warning : PHP Startup : Unable to load dynamic library ’/opt/cpanel/ea-php56/root/usr/lib64/php/modules/ffmpeg.so’ - /opt/cpanel/ea-php56/root/usr/lib64/php/modules/ffmpeg.so : cannot open shared object file : No such file or directory in Unknown on line 0

    I have searched solution for this error, so I got one solution like include autoload.php file. Which I have already included.

    So can anyone help me to solve out this problem ?

  • Cannot find the class in php oop [duplicate]

    30 décembre 2018, par mr stark

    This question already has an answer here :

    I’m trying to make a class for video streaming with FFMpeg Php package.

    I’m getting this error on browser :

    Fatal error : Uncaught Error : Class ’Classes\Video’ not found in C :\xampp\htdocs\php\index.php:5 Stack trace : #0 main thrown in C :\xampp\htdocs\php\index.php on line 5

    this is my index.php :

     use Classes\Video;

     $video = new Video();

     $video->videoStreaming("video.mp4",320,240,"myVideo","WMV");

    and Video in Classes directory :

       namespace Classes;
       use FFMpeg\Coordinate\Dimension;
       use FFMpeg\FFMpeg;
       use FFMpeg\Format\Video\WMV;
       require "../vendor/autoload.php";

       class Video
       {
           private $ffmpeg;
           private $video;

    public function __construct()
    {
       $this->ffmpeg = FFMpeg::create([
           'ffmpeg.binaries' => 'C:\ffmpeg\ffmpeg.exe',
           'ffprobe.binaries' => 'C:\ffmpeg\ffprobe.exe',
           'timeout' => 3600,
           'ffmpeg.threads' => 12,
       ]);
    }

    public function videoStreaming($videoPath,$width,$height,$newName,$newExtension)
    {
       $this->video = $this->ffmpeg->open($videoPath);
       if ($width && $height) {
           $this->video->filters()->resize(new Dimension($width,$height))->synchronize();
       }
       $this->video->save(new WMV(), $newName . $newExtension);
    }

       }
  • Revision 113525 : Ajout d’une vérification pour la chaine d’un attribut class d’une ...

    20 janvier 2019, par root — Log

    Ajout d’une vérification pour la chaine d’un attribut class d’une balise HTML