Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (106)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (6852)

  • MediaTomb, doesnt execute ffmpeg

    19 janvier 2014, par Александър Добрев

    Im trying to setup MediaTomb on home machine to watch movies on TV via DLNA.Last 2 days, i tried several configs for MediaTomb, a lot of codec variations for ffmpeg but nothing.
    The problem is that i try to play HD movie(mkv file), movie is fine except that doesnt have any sound.

    Strange here is that when i play movie, ffmpeg isnt running as process in htop. Any ideas will be good.

    This is my current config of Mediatomb.

    http://pastebin.com/L1cPb2c8

  • Ffmpeg only saves files but don't re transmit the stream in node

    3 juin 2018, par sonseiya

    am using ffmpeg to get a video stream, save a file and re send to another machine.

    Basicaly i am using the following command :

    ffmpeg -timeout 60 -i udp://192.168.0.12:3000 -c:v libx264 -c:a mp2
    -f tee -map 0:v -map 0:a
    "[onfail=ignore]6067_20180602_214828.ts|[f=mpegts]udp://192.168.0.12:4000"

    The file is being generating perfectly, my problem is that i am not getting the udp stream when i try to test it using vlc.

    Did i miss something ?

    I get the command from : https://ffmpeg.org/ffmpeg-formats.html#tee

    Regards

  • nodejs get mp4 file thumbnail quickly

    29 août 2017, par user1590595

    I want to have a thumbnail of 0.0 sec of a video.
    Currently I am using node-fluent-ffmpeg to generate thumbnail. Following is the code :

    ffmpeg(tempLocalFile)
             .screenshots({
               timestamps: [0.0],
               filename: 'xx.png',
               folder: tempFilePath
             }).on('end', function() {
               console.log('done');
             });

    But the problem is, it is taking too much of time to do the process. It is normally taking 30sec to generate the thumbnail. Which keeps increasing if the mp4 file size increases.

    So my question is, Is there any fast way to generate the thumbnail. Can we improve above code to improve the performance.

    ps : The machine this code is running is 512MB RAM 800MHz