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)

  • Merge commit ’94603feb1b3ad01a821a1a1cef1570b13f471821’

    28 octobre 2013, par Michael Niedermayer
    Merge commit ’94603feb1b3ad01a821a1a1cef1570b13f471821’
    

    * commit ’94603feb1b3ad01a821a1a1cef1570b13f471821’ :
    h264_ps : when parsing a VUI fails, only abort when explode is set

    Merge only for metadata, ignoring invalid data can put the context
    into an invalid state and can possibly be used for remote code
    execution exploits.
    Also we support all non standard VUIs that have been reported so
    ignoring parsing failure makes no sense for us unless theres
    some issue that has not been reported

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_ps.c
  • Why is ffmpeg cut setting the wrong duration on my output file

    9 mai 2023, par danielson317

    Setup

    &#xA;

    I am trying to break a video up into parts using some basic commands I have seen available.

    &#xA;

    I have tried :

    &#xA;

    ffmpeg -ss 00:00:00 -t 00:11:42 -i &#x27;original.m4v&#x27; -acodec copy -vcodec copy &#x27;output.m4v&#x27;

    &#xA;

    I also tried more generic (and much slower) :

    &#xA;

    ffmpeg -ss 00:00:00 -t 00:11:42 -i &#x27;original.m4v&#x27; &#x27;output.m4v&#x27;

    &#xA;

    I am on Ubuntu 20 with ffmpeg 4.2.7-0. I know it is a little outdated but this computer lost it's network card so I cannot update it at this time.

    &#xA;

    The problem

    &#xA;

    In both cases the video cuts correctly to only have the first 11:42. However the video properties state the video is 31 minutes long (the length of the original). This file size also reflects the reduced size I would expect from the cut. When I play the video in VLC it reports the video is 31 minutes long but scanning or playing past 11:42 "crashes" the playback.

    &#xA;

    Question

    &#xA;

    Why is the new video reporting the wrong length and how do I correct this ? Preferably in the conversion process not a secondary command.

    &#xA;

  • Merge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’

    28 novembre 2013, par Michael Niedermayer
    Merge commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’
    

    * commit ’4d388c0cd05dd4de545e8ea333ab4de7d67ad12d’ :
    h264_refs : make sure not to write over the bounds of the default ref list

    Conflicts :
    libavcodec/h264_refs.c

    This condition should be impossible and was checked for by asserts.
    the asserts are moved up in this merge to gurantee that no out of array
    access can happen even if the state is "impossible".
    Also if such impossible states could somehow be created, that should
    be dealt with and not silently ignored.

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264_refs.c