Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (68)

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

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7399)

  • checkasm : Test whether the native FFmpeg timers work

    14 décembre 2023, par Martin Storsjö
    checkasm : Test whether the native FFmpeg timers work
    

    On some platforms (in particular, ARM/AArch64), the implementation
    of AV_READ_TIME() may use a privileged instruction - in such
    cases, benchmarking just fails with a SIGILL.

    Instead of crashing, try executing AV_READ_TIME() once within
    a region with the signal handler active, to allow gracefully
    informing the user about the issue.

    This matches the dav1d checkasm commit
    95a192549a448b70d9542e840c4e34b60d09b093.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tests/checkasm/checkasm.c
  • Packing a binary into AWS Lambda for Python

    17 novembre 2016, par Anthony G

    I want to convert m4a files uploaded to S3 to mp3. The files would only be 15 seconds max, so using Elastic Transcoder would be overkill. I downloaded a binary from https://www.johnvansickle.com/ffmpeg/. But I am very new to AWS and im still not sure how uploading binaries works. How would I would include it so that I could convert a file ?

    import boto3
    import urllib

    print('Loading function')

    s3 = boto3.client('s3')

    def lambda_handler(event, context):
       bucket = event['Records'][0]['s3']['bucket']['name']
       key = urllib.unquote_plus(event['Records'][0]['s3']['object']['key'].encode('utf8'))
       try:
       #convert to mp3
       #upload to bucket
       except Exception as e:
           print(e)
           print('Error getting object {} from bucket {}. Make sure they exist and your bucket is in the same region as this function.'.format(key, bucket))
           raise e
  • avcodec/dvbsubdec : Check object position

    5 mars 2019, par Michael Niedermayer
    avcodec/dvbsubdec : Check object position
    

    Reference : ETSI EN 300 743 V1.2.1 7.2.2 Region composition segment

    Fixes : Timeout
    Fixes : 13325/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DVBSUB_fuzzer-5143979392237568

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dvbsubdec.c