Recherche avancée

Médias (91)

Autres articles (64)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10674)

  • lavf : do basic sanity checking on muxed packets

    20 janvier 2014, par Anton Khirnov
    lavf : do basic sanity checking on muxed packets
    

    Reject packets for non-existing or attachment streams.

    • [DH] libavformat/mux.c
  • FFProbe Duration Integer Expression Expected ?

    25 décembre 2017, par kpjVideo

    I’m trying compare the number of seconds in a video provided by ffprobe.

    In my bash script I have the following :

    duration=`ffprobe -i $fileread.mp4 -show_format -v quiet | sed -n 's/duration=//p'` < /dev/null

    This returns a double > 8248.021633

    I want to compare this number to an integer like so :

    if [ "$duration" -lt 300 ]; then
      # do stuff
    fi

    Everytime the script runs I get :

    line 15: [: 8248.021633: integer expression expected

    Is this because the output is simply not an integer ? I have also tried making a new variable with var=$(($duration)) with no luck.

    Any help much appreciated, Thanks.

  • avformat/mov : check that pcmC box is of the expected type

    4 février 2023, par Jan Ekström
    avformat/mov : check that pcmC box is of the expected type
    

    As per 23003-5:2020 this box is defined as
    PCMConfig extends FullBox(‘pcmC’, version = 0, 0), which means
    that version is 0 and flags should be zero.

    • [DH] libavformat/mov.c