Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

Sur d’autres sites (12624)

  • avformat/hls : do not care about stream start timestamps

    30 décembre 2013, par Anssi Hannula
    avformat/hls : do not care about stream start timestamps
    

    While selecting a packet to return to caller in read_packet(), the code
    corrects the timestamps for starting timestamps.

    However, this is wrong, since for live streams the initial timestamps
    might differ just because of the time delay between the retrieval of the
    various Media Playlists.

    Fortunately, spec 6.2.4 mandates that all variant streams must have
    matching timestamps, so we do not need to correct for initial
    timestamps.

    Drop the correction code.

    Note that ID3 timestamps were previously ignored, so this code was
    previously actually needed.

    Signed-off-by : Anssi Hannula <anssi.hannula@iki.fi>

    • [DH] libavformat/hls.c
  • aarch64 : vp9lpf : Interleave the start of flat8in into the calculation above

    10 janvier 2017, par Martin Storsjö
    aarch64 : vp9lpf : Interleave the start of flat8in into the calculation above
    

    This adds lots of extra .ifs, but speeds it up by a couple cycles,
    by avoiding stalls.

    This is cherrypicked from libav commit
    b0806088d3b27044145b20421da8d39089ae0c6a.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/aarch64/vp9lpf_neon.S
  • Set "start" field to 0 in mp3 with ffmpeg

    11 juin 2020, par TomatoCo

    I'm trying to change the bitrate and sample rate of an MP3 to match another to try and stop a small audio glitch from occurring when some game tries to play it. I've got the sample rate and bitrate right where I want them, but I can't get the "start" portion of

    &#xA;&#xA;

      Duration: 00:03:33.81, start: 0.025057, bitrate: 196 kb/s&#xA;    Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 196 kb/s&#xA;

    &#xA;&#xA;

    to go to 0, like the mp3 I'm trying to replace. The target looks like :

    &#xA;&#xA;

      Duration: 00:06:47.59, start: 0.000000, bitrate: 196 kb/s&#xA;    Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 196 kb/s&#xA;

    &#xA;&#xA;

    I've tried a variety of silenceremove filters and -ss flags to try and trim it, but I can't get rid of that "start" field. Google is failing me. What args am I looking for ?

    &#xA;