Recherche avancée

Médias (91)

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • Anomalie #3577 : Couleurs des boutons non accessibles

    6 novembre 2015, par b b

    Hop, pour le deuxième point, j’ai trouvé le commit suivant, qui indique :

    pas de :hover sur les dispositifs tactiles. Un click sur l’element ajoute/enleve la classe hover pour faire apparaitre les boutons

    http://zone.spip.org/trac/spip-zone/changeset/59779/

    Mais il est vrai que les boutons sont presque invisibles par défaut, du coup ça donne forcément l’idée de cliquer sur le bloc "si on ne sait pas".

    PS : peut-être faudrait-il faire un ticket pour chaque point et les relier à celui-ci ?

  • Using inotifywait with a FIFO

    2 mai 2019, par diatrevolo

    I am using inotifywait to watch a folder and run a video transcode when a file is done copying or moved into a share folder from within an Ubuntu Docker container. It seems to work, but occasionally it stops responding and seems to ignore files from that point on. Seeing as this is my first time using mkfifo, and inotifywait, from the script below, is there anything that looks odd that someone could point out ? Thanks !

    #!/bin/bash
    mkfifo video_pipe

    inotifywait -m /media/transcode_inbox -e close_write -e moved_to | while read path action file
    do
     echo "$file" >> video_pipe
    done &

    while read file
    do
       mv /media/$file /media/originals/
       ffmpeg -nostdin -i /media/originals/$file -c:v hap -format hap_q media/hap_q/$file &
    done < video_pipe
  • multiple ffmpeg instance with zmqsend

    6 février 2018, par liewjls

    By any chance anyone would able to point to the right direction, I have multiple ffmpeg instances running on the server and i need to change the configuration (for example change the volume) on the fly while the ffmpeg instance is running. I found this https://lists.ffmpeg.org/pipermail/ffmpeg-user/2016-September/033777.html which the zmqsend is the tool do the job.

    But how can i point the zmqsend sending the command to a specific ffmpeg instance ?

    I tried to run the zmqsend, but it got hanged.

    thanks.