Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (87)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5668)

  • Range selector for Video trimming android

    28 février 2019, par VoidMain

    I am working on a project in which I have to trim a video. But first the user needs to select the video for trimming I have done a little digging around and have failed to find a suitable library. I need to implement just the UI that would let the user select the starting and ending point of the trim.

    (I need just the UI the data will be taken from that UI will be used in trimming the video using FFmpeg-android which is working properly)

    A library similar to this iOS layout would do the trick.

    https://drive.google.com/file/d/15FqIX_Sh1TqBrr2cZdkOka0pCMZ0BcNq/view

    Please, do let me know if you have any ideas ? or a better solution for it.

    Any help would be appreciated.
    Thanks

  • How to start video recording of tests via ffmpeg, in headless mode

    1er juin 2020, par Vitalii

    I have rspec tests that need to run in headless browser mode, the system macos 10.15.
    
I want to record videos using ffmpeg without starting the browser. On linux systems, there is xvfb, but there is no macos version.

    



    This is my command for record video - ffmpeg -f avfoundation -i '1' -c:v libx264 -preset ultrafast ~/Desktop/output.mkv, where avfoundation -i '1' is my screen number, but i need run virtual screen.

    



    Can you tell me how I can create a virtual screen, run tests, and save them in ffmpeg ?

    


  • FFMPEG Code Understanding

    13 avril 2016, par Edge

    I have the following code :

    }
       private function getIntroVideoFile() {
           global $upload_dir;
           foreach ($this->myusers as $user) {
               $sql = "SELECT  IntroVideoFile from IntroVideos
                   where IntroVideoID in (select IntroVideoID from EventInfo where EventInfo.PackageID = '{$user->packageid}' and EventInfo.SlotID = '{$this->curSlotId}') ";
               $row = db_fetch_item($sql);
               $user->introVideoFile = $row['IntroVideoFile'];

               exec('ffmpeg -re -i "'.$upload_dir.$user->introVideoFile.'" -sameq -vcodec copy -acodec copy -f flv rtmp://XX.XX.XX.XXX:1935/live/'.$user->username . ' >/dev/null 2>/dev/null < /dev/null &');
               echo "Starting play ".$user->introVideoFile."\n";
           }

    Please can someone explain to me what is happening here.