Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (2)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

Sur d’autres sites (2701)

  • FFMPEG capture image from different video formats

    16 juin 2015, par user1391023

    I am trying to extract image from video exactly at 5th second using the following command.

    ffmpeg -i input.mp4 -deinterlace -an -ss 5 -f mjpeg -t 1 -r 1 -y -s 200x180 output.jpg 2>&1

    It works for mp4 only where for other file formats i am getting a 0 kb image file.
    Any helps,

    Thanks in advance.

  • FFmpeg on Xcode

    4 octobre 2013, par user2741735

    I'm developing an app for ios which uses IP Camera to stream live videos to the user. I installed macports and ffmpeg using terminal on my mac. I have taken the IP Camera output and converted into .ts file using ffmpeg on terminal. Now I want the procedure to do the same using Xcode i.e. writing code in xcode to convert IP Camera output to .ts files.
    Thanks in advance.

  • How to transcode a video using python and ffmpeg library (no commandline call)

    25 mars 2014, par mojovski

    I would like to transcode a video using python and ffmpeg. But I dont want to use a command line call like
    call(ffmpeg -i ....")

    I will need to deploy the resulting application using py2exe, thus cannot use call method.

    Thanks in advance !