Recherche avancée

Médias (91)

Autres articles (3)

  • Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)

    31 mai 2013, par

    Lorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
    Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
    Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
    Description des scripts
    Trois scripts Munin ont été développés :
    1. mediaspip_medias
    Un script de (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (3036)

  • Strange enum name clash

    29 avril 2015, par TheSHEEEP

    I am compiling a project that uses both ffmpeg and Ogre.
    Now on Windows, everything works fine.

    But when I want to compile a file with the following line of code :

    Ogre::PixelFormat format = Ogre::PF_BYTE_RGBA;

    The compiler gives the following error :

    error: ‘AVPixelFormat’ is not a member of ‘Ogre’

    Which is strange in many ways, as I have not only specified the Ogre namespace with : :, but also there is no AVPixelFormat in Ogre. How does gcc confuse "PixelFormat" with "AVPixelFormat" ?

    And how can I get rid of that ?

    I’d love to use int here instead of an enum, but another Ogre function requires format to be in Ogre::PixelFormat.

  • How to seal subtitle on the video permanently ? ffmpeg

    10 octobre 2017, par Robert Choy

    I am able to add subtitle to my mp4 ; however, when i upload it on youtube, the subtitle is gone, disappeared.

    So i am asking if there is any method to make the subtitle on the video (forever, permanently, seal it, burn it, force everyone watch the video with subtitle, can’t even turn it off manually)

    ffmpeg -i video.mp4 -i subtitle.srt -c copy -c:s mov_text -disposition:s:0 forced \
    permanently-subtitle-video-please.mp4

    i dont like the design of youtube subtitle, so i would love to upload my video + subtitle as one thing.

    sorry i a not an English native speaker, hope you understand what i am trying to ask. thanks

  • ffmpeg jpeg stream to webm only creates a file .webm with 1 frame (snapshot) or empty .webm file (mjpeg)

    14 novembre 2016, par moeiscool

    my problem is that when i try to turn a series of jpegs into a webm video. I either get a webm file with a single frame or a webm file with nothing in it (0 kb).

    var fs = require('fs');
    var path = require('path');

    var outStream = fs.createWriteStream(__dirname+'/output.webm');
    var ffmpeg = require('fluent-ffmpeg');

    this one is a mjpeg stream URL. it produces a file with nothing.

    //var proc = new ffmpeg({source:'http://xxx.xxx.xxx.xxx/goform/stream?cmd=get&channel=0',timeout:0})

    this one is a snapshot URL. it produces a file with a single frame.

    var proc = new ffmpeg({source:'http://xxx.xxx.xxx.xxx/snapshot/view0.jpg',timeout:0})

    .fromFormat('mjpeg')
    .size('2048x1536')
    .toFormat('webm')
    .withVideoBitrate('800k')
    .withFps(20)

    I have tried to use pipe instead but no dice :(

    //.pipe(outStream,{end:false});
    .writeToStream(outStream,{end:false})

    any help is appreciated.

    at this point i am up for using a basic shell command with exec but when i try that i just get errors also. Yes, it goes without saying I am a noob.

    Side note :

    I have tried things like zoneminder but it just breaks with our cameras and the number of cameras. so i am making a bare bones solution to record them. With our current cloud service we are missing very important moments and its costing more in energy and time.