Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (64)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (7851)

  • EventHandler while changing frame using ffmpeg.exe

    7 juin 2015, par Abdur Rahim

    Reading a video file using ffmpeg.exe in C#.

    Is there any good wrapper which can fire an event while changing a frame and
    keep a pointer of the frame ?

    Or how can I generate own eventHandler on that specific event i.e. changing of frames.

  • 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
  • from_file function of pydub's audiosegment is only reading about 5 seconds of audio every time

    17 janvier 2020, par Johan Dingler

    I’m calling from_file on a .webm audio file in order to convert it to .mp3.
    The mp3 is successfully generated, however it’s always a bit short of 5 seconds long (between 4600-4800 ms everytime). I have no idea what is going on. After reading the original .webm into the audiosegment, I print it’s length and it’s 4600-4800. This is my code :

    pydub.AudioSegment.converter = '/opt/bin/ffmpeg'
    audioSegment = pydub.AudioSegment.from_file('/tmp/audioFile.{}'.format(event['audioFormat']), format=event['audioFormat'], codec=event['codec'])
    print('length of audio ', len(audioSegment))
    audioSegment.export('/tmp/output.mp3')

    Any ideas what might be going on ?