Recherche avancée

Médias (91)

Autres articles (69)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7384)

  • swresample : convert to new channel layout API

    27 août 2021, par James Almer
    swresample : convert to new channel layout API
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswresample/options.c
    • [DH] libswresample/rematrix.c
    • [DH] libswresample/rematrix_template.c
    • [DH] libswresample/swresample.c
    • [DH] libswresample/swresample.h
    • [DH] libswresample/swresample_frame.c
    • [DH] libswresample/swresample_internal.h
    • [DH] libswresample/tests/swresample.c
  • Best practices for developing scalable video transcoding server on Amazon Web Services ? [closed]

    5 février, par undefined

    What do people think are the most important issues when developing an application that is going to allow users to upload video and images to a server and have them transcoded by FFMPEG and stored in amazon S3 ? I have a couple of options ;

    &#xA;

      &#xA;
    1. install FFMPEG on the same server that handles file uploads, when a video is uploaded and stored on EC2 instance, call FFMPEG to convert it then when done, write the file to S3 bucket and dispose of the original.
    2. &#xA;

    &#xA;

    How scalable is this ? What happens when many users upload at the same time ? How do I manage multiple processes at once ? How do I know when to start another instance and load balance this configuration ?

    &#xA;

      &#xA;
    1. Have one server for processing uploads (updating database, renaming files etc) and one server for doing transcoding. Again what is the best way to manage multiple processes ? should I be looking at Amazon SQS for this ? Can I tell the transcoding server to get the file from the upload server or should I copy the file to the transcoding server ? Should I just store all files on S3 and SQS can read from there. I am trying to have as little traffic as possible.
    2. &#xA;

    &#xA;

    I am running a linux box as the upload server and have FFMPEG running on this.

    &#xA;

  • why is streaming to an flv server with ffmpeg only showing black/blank video for clients ?

    6 septembre 2012, par rogerdpack

    When I stream to an flv server, like flash media server, using ffmpeg, like

    ffmpeg -i input -vcodec libx264 rtmp://hostname/streamname

    it turns out black. Why is that ?