Recherche avancée

Médias (91)

Autres articles (45)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8450)

  • lavfi/af_anequalizer : convert to query_func2()

    30 août 2024, par Anton Khirnov
    lavfi/af_anequalizer : convert to query_func2()
    

    Also, simplify code and drop redundant calls that also happen implicitly
    in generic code.

    • [DH] libavfilter/af_anequalizer.c
  • FFMPEG output from motion detection is gray

    13 septembre 2019, par Eternal_Dusk

    I have taken footage I recorded and wanted to use FFmpeg to cut out still frames of the file, however, I just get a file of the same size, but it is all grayed out.

    Command Used :

    ffmpeg -i video.mp4 -vf "select=gt(scene\,0.0003),setpts=N/(30*TB)" output.mp4\

    Output :
    enter image description here

    This is gameplay of MTG Arena btw

    When I run this in FFplay, however, it looks normal.

    Still, however, no cuts or removal happen, as it is still the same length video.

    At this point I have two questions.

    1) How do I cut frames with no motion in FFmpeg

    2) Why does this footage appear gray.

    My video player is MPC-HC

  • ffmpeg library rotates video after compression Android

    14 septembre 2016, par Leo Wiki

    I’m using ffmpeg library for video file compression in my Android project.

    To implement ffmpeg I refereed this link. Compression is working fine but after compression process this library rotating my video 90 degree which I don’t want to be happen. I googled a lot but yet not reach to solution which can tell me how to stop rotating the video. For video compression I’m using the following command—

    ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /sdcard/videokit/out.mp4

    Please let me know if I can provide more information to you.

    Thank you.