Recherche avancée

Médias (91)

Autres articles (105)

  • 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

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

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

Sur d’autres sites (12779)

  • avcodec/avcodec : Don't free options on failure in avcodec_open2()

    12 mai 2021, par Andreas Rheinhardt
    avcodec/avcodec : Don't free options on failure in avcodec_open2()
    

    Instead return the dictionary in the state it is at the time the error
    occurred. This is more in line with the description of this parameter
    and allows to notify the user of unrecognized options if an error
    happens lateron (which might very well be due to e.g. misspelled
    options).

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

    • [DH] libavcodec/avcodec.c
  • ffmpeg : overlay video on top of a cropped video, map the overlay audio, cut the base video to the overlays length

    14 mars 2023, par roku

    I'm trying to overlay a video on top of a base video which is cropped to a shorts video format (standing phone). The overlayed video should be centered on top of the base layer. The base video's length should be reduced to the overlay's length. And I want to save only the overlay's audio.

    &#xA;

    I've tried a bunch of stuff without much success. The current state of my ffmpeg command is this :

    &#xA;

    ffmpeg -i overlay.mp4 -ss 00:00:00 -to <insert base="base"> -i base.mp4 -map 1:v:0 -map 1:a -vf "crop=ih*(9/16):ih" -crf 21 output.mp4&#xA;</insert>

    &#xA;

    But this only gives me the cropped version of the base video. So my questions are :

    &#xA;

      &#xA;
    1. How can I figure out the base video's length ?
    2. &#xA;

    3. How can I actually overlay (not map) other video on top of the base video ?
    4. &#xA;

    5. How can I map the overlay's audio ? Since -map 1:a the base's audio and -map 0:a says : "Stream map '0:a' matches no streams. To ignore this, add a trailing ' ?' to the map."
    6. &#xA;

    &#xA;

    Any help is appreciated.

    &#xA;

  • ffplay : fix silence insertion on error or pause

    3 avril 2016, par Marton Balint
    ffplay : fix silence insertion on error or pause
    

    Insertion of silence was a bit broken since
    df34b700981de606ca4847e1ed0bfdf9ac3e9104 because the info whether or not the
    source buffer supposed to be silence must be kept between callbacks. Failing to
    do so causes rogue samples from the last buffer to be presented, I guess even a
    crash can occur under some circumstances.

    This patch uses a NULL audio_buf to keep the silence state across audio
    callbacks.

    Reviewed-by : Lukasz Marek <lukasz.m.luki2 at gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c