Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (97)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (12219)

  • 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
  • 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 ’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