Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (36)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 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 (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (4377)

  • Continously read file in Ruby and save into pipe

    7 juillet 2016, par stiller_leser

    I am trying to continously read a file and save the output into a IO.pipe. The motivation being that ffmpeg which has been spawned before and given the r-end of the pipe as STDIN will then convert the video.
    This is what I have so far :

       r,w = IO.pipe
       ffmpeg_args = ' -i pipe:0 "test.mp4"'
       pid = Process.spawn('ffmpeg'+ffmpeg_args, {STDIN => r, STDERR => STDOUT})
       Process.detach pid
       File.open(@options['filename'], 'rb') do |file|
         while line = file.gets
           w.write line.read
         end
       end

    I had success with declaring the input file directly as STDIN for the process, but this lead to an early termination of ffmpeg since it had reached the end of the file. With the code above ffmpeg complains about invalid data.

    Is there any way this could be achieved ?

  • avformat/mlvdec : Only store dimensions after having validated them

    10 août 2020, par Andreas Rheinhardt
    avformat/mlvdec : Only store dimensions after having validated them
    

    Otherwise it might happen that invalid dimensions are used when reading
    a video packet ; this might lead to undefined overflow.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mlvdec.c
  • configure : Change the configure check for tonemap_vaapi

    30 décembre 2019, par Xinpeng Sun
    configure : Change the configure check for tonemap_vaapi
    

    "VAProcFilterParameterBufferHDRToneMapping" was defined in libva 2.4.1, which will lead to
    build failure for the filter tonemap_vaapi for libva 2.3.0 with current check. This patch
    is to fix this build error.

    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>

    • [DH] configure