Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (78)

  • 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 (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 (...)

Sur d’autres sites (8430)

  • what is the ffmpeg path for godaddy server hosting ? [duplicate]

    17 mars 2018, par Jignesh Gohil

    This question already has an answer here :

    HTML code

       <form action="" method="POST" enctype="multipart/form-data">
           <input type="file" />
           <input type="submit" />
       </form>`

    PHP code :

     if(isset($_POST['submit'])){
           $ffmpeg = "C:\\ffmpeg\\bin\\ffmpeg";        
           $videoFile = $_FILES['file_data']['tmp_name'];
           $imageFile = "one.png";
           $size = "200*120";

           $getFromSeconds = 10;
           $cmd = "$ffmpeg -i $videoFile -an -ss $getFromSeconds -s $size $imageFile";            

           if(!shell_exec($cmd)){
               echo "Thumbnail Created!";
           }else{
               echo "Error Creating Thumbnail";
           }                        
       }

    i want to create a thumbnail from video while upload a video file. it’s working on my local computer.

    my local path for ffmpeg is : C :\ffmpeg\bin\ffmpeg

    so how can i parform on my godaddy server hosting with new ffmpeg path ?

    please help me...

    thanks you

  • Does anyone know of any discord bot hosting that can use FFmpeg ? [closed]

    16 juillet 2024, par Nchxz

    I am developing a discord bot that streams radio, and that is why it uses FFmpeg. The bot works well because it uses the FFmpeg installed on my PC, but as is obvious on a host it will not be able to transmit the music due to the lack of software. This is why I am looking for a host that allows me to install it (recommend a free host if there is one)

    &#xA;

    I tried to use Discloud because it is free but I don't know if there is a way to install FFmpeg

    &#xA;

  • FFmpeg code that is working on Windows but not working on Linux hosting

    14 octobre 2019, par Assad Ullah

    I was working on FFmpeg module using Windows OS and code was working fine but when I uploaded on Linux hosting I got issue.

    "ffmpeg -ss 3 -t 3 -i $video_file -filter_complex \"[0:v] fps=12,\"scale=320:180:force_original_aspect_ratio=decrease,pad=320:180:(ow-iw)/2:(oh-ih)/2\",split [a][b];[a] palettegen [p];[b][p] paletteuse\" $output"

    Kinldy help me to fix this issue, I shall be very thankful to you !