Recherche avancée

Médias (91)

Autres articles (62)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (7239)

  • How ffmpeg can return wavespic png image to console stdout

    26 février 2016, par Alexufo

    This command return wavespic in stdout.

    ffmpeg -i "/home/01.mp3" -filter_complex "aformat=channel_layouts=mono,compand,showwavespic=s=640x120" -frames:v 1 -f  image2 -

    I want convert and return to stdout wavespic in png format (better with indexed color , not rgb).

  • sendBook and saveBook should return the filename

    26 septembre 2013, par Grandt
    sendBook and saveBook should return the filename
    

    Rev. 2.13 - 2013-09-26
    * Fixed : sendBook and saveBook returned boolean TRUE/FALSE depending on
    if the sending was successful. The sanitized/used filename was never
    exposed. The methods now return the filename used for sending, or FALSE
    if it failed.
    * Change : sanitizeFileName is now a public function.

  • avformat/utils : return pending IO error on EOF in av_read_frame()

    24 août 2019, par Marton Balint
    avformat/utils : return pending IO error on EOF in av_read_frame()
    

    avio_feof() returns true both in case of actual EOF and in case of IO errors.
    Some demuxers (matroska) have special handling to be able to return the proper
    error for this exact reason, e.g. :

    if (avio_feof(pb))
    if (pb->error)
    return pb->error ;
    else
    return AVERROR_EOF ;

    However, most of the demuxers do not, and they simply return AVERROR_EOF if
    avio_feof() is true, so there is a real chance that IO errors are mistaken for
    EOF.

    We might just say that the API user should always check the IO context error
    attribute on EOF to make sure no IO errors happened, but not even ffmpeg.c does
    this. It should be more intuitive to the API user if we simply return the IO
    error as the return value of av_read_frame() instead of AVERROR_EOF.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/utils.c