Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11027)

  • Create stream with FFmpeg from different ip

    14 novembre 2017, par Ashot Jlavyan

    I need to create HLS stream with FFmpeg from different ip. It’s like —bind-address in wget command. i have 2 network interface i need choose which i want and process command in terminal.

  • How to create thumbnails image from videos stored in my download host in subdomain ? [closed]

    6 septembre 2021, par M Kasesang

    I can create video thumbnails from my videos stored in my website host via ffmpeg and php.

    


    but how can I create thumbnails from videos stored in my dl host ?

    


    Thnx in advance.

    


  • PHP create video thumbnail from remote url

    23 mars 2017, par user2918057

    I’ve my video storage on google cloud, I need to create the thumbnail for my videos it’s gonna be remote, I tried to use FFmpeg to create and getting the content of the thumbs, but it’s not working, it just returns null for me.

    public function create_video_thumb($video){

           $ffmpeg = '/usr/bin/ffmpeg';

           try{

               $cmd = "ffmpeg -i $video -deinterlace -an -ss 00:00:10 -vframes 1 -f image2 'test.jpg' ";

               $return = array(
                   'success'=>true,
                   'content' => $cmd
               );

           }catch (Exception $e){
               $return = $e->getMessage();
           }


           return   $return;
       }

    Return :

    {
         "sucess":true,
         "content":null
    }