Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (80)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (9343)

  • Core : Focus invalid element when validating a custom set of inputs

    16 décembre 2014, par Maks3w
    Core : Focus invalid element when validating a custom set of inputs
    

    Invalid element is not focused when validate a custom set of inputs and
    the last one is a valid input. The issue is element method, via
    prepareElement method, via reset method, resets errorList state after
    validate each input so the global state of the validator is not
    preserved.

    Closes #1327

  • Media Source Extensions - Identifying when there is no more data

    8 octobre 2015, par galbarm

    I’m creating a fragmented MP4 of a real-time live content with constant 10FPS but occasionally a frame gets dropped before being feed to the MP4 creation process.
    The MP4 is transmitted to the web through a web socket.

    Due to the occasional frames drop, the playback speed of the file is effectively slightly greater than 1x, because the player plays at 10FPS.
    Since this is a live content, after some duration, the player reaches the present time and has no data to play.

    Now, to the MSE issue :
    What seems to happen in Chrome, when the player doesn’t have enough data to continue playing, is that it pauses for 1-2 secs, then plays it very fast, and vice versa. So at this point the user experience becomes very bad.
    The issue was discussed here :
    https://www.w3.org/Bugs/Public/show_bug.cgi?id=28379

    My idea to workaround this, is to identify the state (having no more data), change playback rate to 0.9 for a few seconds to allow some buffering, and then switch back to 1.0.
    The problem is that I couldn’t find a way to identify the state.
    The readystate of the media element seems to always have the value of "HAVE_ENOUGH_DATA" even when the issue starts.

    Does the MSE API exposes a way identify the state that I have described ?

  • extract image while recoring video using ffmpeg

    9 septembre 2013, par petre

    I can extract 320x240 jpg image while recording a 320x240 video stream using gstreamer. How can i do that using ffmpeg ? Gstreamer script is shown :

    gst-launch-0.10 v4l2src device=/dev/video${i} ! videorate ! video/x-raw-yuv, width=320, \height=240, framerate=5/1 ! tee name=tp tp. ! queue ! videobalance saturation=0.0 ! textoverlay halign=left valign=top text="(c)PARK ON OM " shaded-background=true ! clockoverlay halign=right valign=top time-format="%D %T " text="Date:" shaded-background=true ! queue ! ffmpegcolorspace ! ffenc_mpeg4 ! avimux ! filesink location=$DIR/CAM${i}_${DTIME}.mp4 append=true tp. ! queue ! jpegenc ! multifilesink location=$DIR/webcam${i}.jpeg &