Advanced search

Medias (1)

Tag: - Tags -/pirate bay

Other articles (68)

  • List of compatible distributions

    26 April 2011, by

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

  • Les tâches Cron régulières de la ferme

    1 December 2010, by

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 June 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

On other websites (8868)

  • What is wrong with this code? Not working on Windows 10 / Ubuntu 14

    3 April 2017, by Somename

    Trying to convert a .gif to .mp4 :

    var express = require('express');
    var bodyParser = require('body-parser');
    var app = express();
    var ffmpeg = require('fluent-ffmpeg');  

    var proc = new ffmpeg({ source: 'myfile.gif' })
     .withAspect('4:3')
     .withSize('640x480')
     .applyAutopadding(true, 'white')
     .saveToFile('myfile.avi', function(stdout, stderr) {
       console.log('file has been converted succesfully');
     });

    app.listen(3000, function() {  
       console.log("Server Running on 3000");
    });

    Getting the same error on Windows 10 and Ubuntu 14 : Error: Cannot find ffmpeg.

    What is wrong with the code? Please help.

  • How can I use ffmpeg x11 capture in C++ code

    12 June 2015, by Özüm Safaoğlu

    I want to grab x11 desktop in linux using ffmpeg, hoping it would give a fast output. However, I would like to do it within C++ code. I suppose it is possible to output it to stdout in the command line with ffmpeg command, however if possible i would prefer reading from memory buffer directly. Is there a way I can do this ?

  • rtsp server using ffmpeg c code

    24 June 2018, by PFMelamed

    I am using ffmpeg lib:

    ffmpeg version git-2017-09-16-08ec828
    Copyright (c) 2000-2017 the FFmpeg developers
     built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609
     configuration: --enable-pic --enable-shared --extra-libs=-ldl --enable-gpl --enable-libass --enable-libfdk-aac --enable-libmp3lame --enable-libopus --enable-postproc --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree
     libavutil      55. 75.100 / 55. 75.100
     libavcodec     57.106.101 / 57.106.101
     libavformat    57. 82.100 / 57. 82.100
     libavdevice    57.  8.101 / 57.  8.101
     libavfilter     6.105.100 /  6.105.100
     libswscale      4.  7.103 /  4.  7.103
     libswresample   2.  8.100 /  2.  8.100
     libpostproc    54.  6.100 / 54.  6.100

    Hyper fast Audio and Video encoder

    I am trying to write an RTSP server using the above version of ffmpeg libs. I have tried a large variety of approachess with no success. Has anyone already written such code with this ffmpeg version or does anyone know of such code? Or, do I need to change versions? Any suggestions or answers are welcome.