Advanced search

Medias (0)

Tag: - Tags -/formulaire

No media matches your criterion on the site.

Other articles (98)

  • Mise à jour de la version 0.1 vers 0.2

    24 June 2013, by

    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 profit de (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 February 2011, by

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

On other websites (10143)

  • ffmpeg: video from images - handling a zero length image file

    29 September 2021, by Buadhai

    I have a shell script which uses ffmpeg to crate a time-lapse video from webcam images. Normally, it works just fine:

    


    /usr/bin/ffmpeg -loglevel info  -framerate 4 \
     -pattern_type glob -i $ipath/'*.jpg' \
    -c:v libx264 -crf 30 -y -pix_fmt yuv420p $temp &>>$log


    


    But this chokes if the image is a zero-length file:

    


    -rw-r--r-- 1 pi pi  156636 Sep 29 04:35 image_022.jpg
-rw-r--r-- 1 pi pi  156533 Sep 29 04:35 image_023.jpg
-rw-r--r-- 1 pi pi  159302 Sep 29 04:35 image_024.jpg
-rw-r--r-- 1 pi pi       0 Sep 29 04:35 image_025.jpg
-rw-r--r-- 1 pi pi  157055 Sep 29 04:35 image_026.jpg
-rw-r--r-- 1 pi pi  156851 Sep 29 04:35 image_027.jpg
-rw-r--r-- 1 pi pi  155793 Sep 29 04:35 image_028.jpg
-rw-r--r-- 1 pi pi  160647 Sep 29 04:35 image_029.jpg


    


    In this case the video only included frames up to the zero length JPEG.

    


    I realize I can test the file length of every webcam image, but there must be an easier, more efficient way.

    


    Is there?

    


  • Set GOP length for HEVC-Encoding in ffmpeg

    18 June 2018, by nm82

    I want to encode an xxx.y4m file to hevc and set the GOP-length to a particular value, open and closed gop.

    To encode I’m using :

    ...>ffmpeg -i xxx.y4m -c copy xxx.hevc

    this gives me the hevc-encoded file, now I want to set a particular gop-length

    ...>ffmpeg -i xxx.y4m -c:v libx265 -keyint=1 -open-gop=1 -c copy xxx.hevc

    is not working because "option not found"

    kind regards

  • AVOptions: do not range check flag options.

    26 October 2013, by Anton Khirnov
    AVOptions: do not range check flag options.
    

    It does not make sense in the vast majority of use cases, no currently
    defined AV_OPT_TYPE_FLAGS options in Libav set the range to anything
    nontrivial, and many of those get it wrong (the "correct" range is
    INT_MIN to INT_MAX so that the builtin constant "all" works).

    • [DBH] libavutil/opt.c