Recherche avancée

Médias (91)

Autres articles (89)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

  • ffmpeg RTSP With TCP channel and its time delay delivery why ?

    27 février 2014, par Whoami

    Connecting RTSP Server using UDP, have seen huge packet loss, and resulted
    to flickering images, hence configured to use TCP like :

    AVDictionary *stream_opts = 0;
    av_dict_set(&stream_opts, "rtsp_transport", "tcp", 0);

    The issue what i see is at the initial period, the time delay between RTSP
    server and av_read_frame() is around 1 sec, and which grows gradually to 5
    sec after some time, then it gets somehow reset to again 1 sec. Server is
    sending for about max 25 fps, min is 18 fps.

    Coder : x264, YUV420p file format [ 1028*720]

    I am not sure where i can hook around ?. Please advise ?.

    P.S :

    1) I am not using any PTS calculation, but simply dumping completed
    frames into UI.
    2) using ffmpeg 2.1.3 in android.

  • mpc current song bash script fail safe

    21 novembre 2018, par Orophix

    I’ve got a script that loops :

    #!/bin/sh
    while [ true ]
    do
     mpc current > current_song.txt
     mpc idle player
    done

    However sometimes it fails to get the song details and creates a blank file.
    FFMpeg is reading this file and it crashes if its blank. Is there any way to fail safe the script so if the file is blank it adds a certain text ?

    Would the best way be to create a script that tries to read the file and if it turns out blank to insert some text and then sleep for a period of time or is there a more elegant way to do it ?

  • Drop late RTMP AVPackets - FFmpeg

    25 novembre 2014, par Mihai Ghete

    I’m using FFmpeg to read RTMP streams in an iOS application. It is basically a Player for RTMP streams. The problem is that when the network is to busy, av_read_frame takes too much time. In conclusion, the latency increases over time. Are there some FFmpeg setups that I can use so that it will drop late frames or make av_read_frame return if it was unable to read the packet in a defined period of time ?

    Any suggestion would be helpful. Thank you in advance.