Recherche avancée

Médias (91)

Autres articles (92)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (13133)

  • FFmpeg add proxy to request

    28 septembre 2024, par P1NG2WIN

    Does FFmpeg support the ability to add a proxy to a request ? On the Internet, I found that there is the -http_proxy option, but when I tried to use it by typing ffmpeg -http_proxy=http://ip:port/ in terminal, I received an Option not found error

    


  • ffmpeg in AWS EBS Php Environment

    3 janvier 2018, par Shihas

    I did a project in Codeigniter framework and uploaded to AWS EBS Php environment.

    In the below function I’m trying to create a thumbnail for the uploading video using ffmpeg.

    function test()
    {
       if($_FILES['video']['name'])
       {
           $extension = pathinfo($_FILES['video']['name'], PATHINFO_EXTENSION);

           $video_file = 'vid_'.time().rand(0,10000000);
           $video_file_name = $video_file.'.'.$extension;
           $video_thumb = $video_file.'.png';

           $path = base_url('/assets/portfolio_video/').$video_file_name;
           move_uploaded_file($_FILES["video"]["tmp_name"],$path);
           echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/project/assets/portfolio_video/$video_file_name -ss 00:00:02.000 -vframes 1 /home/ubuntu/project/assets/thumbnail/$video_thumb");

           echo "File Name: ".$video_file_name."";
           echo "<img src="http://stackoverflow.com/feeds/tag/&#034;.base_url(&#034;assets/thumbnail/&#034;).$video_thumb.&#034;" style='max-width: 300px; max-height: 300px' />";
       }else{
           $this->load->view('test');
       }
    }  

    Here the problem was the video file itself not uploading. I just want to know why its not uploading files in AWS. But it works fine in my local server.

    Now I try to create a thumbnail for the already existing video in the server.

    Path of video file : /home/ubuntu/123.mp4

    Code executed :

    function test()
    {
       echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png");
    }

    But still the thumbnail is not creating.

    NOTE : When I execute the terminal command ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png directly in the AWS server terminal its create the thumbnail successfully.

  • Using ffmpeg to concate 1 video with all in that directory [on hold]

    30 décembre 2017, par tytp oop

    I want to concate video.
    I have more than 500 videos in directory Videos and I have 1 small video which I want to concate with all 500 videos at starting of all 500 videos.
    And also I want to add water mark to all video. I have only linux OS. I want this to do with terminal.