Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (71)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5575)

  • avcodec/qtrle : improve 24bbp decoding speed

    26 février 2019, par Martin Vignali
    avcodec/qtrle : improve 24bbp decoding speed
    

    benchmark on x86_64 :
    mainly raw data : 20 -> 39 fps
    mainly rle data : 97 -> 119fps

    • [DH] libavcodec/qtrle.c
  • Speed up a video without audio to 2x with FFmpeg in android

    12 décembre 2020, par VoidMain

    I am working on a project in which I need to speed up a mute video. I did a little digging around and found the following command.

    



    ffmpeg -i input.mkv -filter:v "setpts=PTS/2" output.mkv 


    



    Tried to use it in android as follows.

    



    new String[]{"-y", "-i", inputFileAbsolutePath, "-filter_complex", "setpts=PTS/2", "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4", fileOutput};


    



    It doesn't even show anything in the Logcat.

    



    I have also tried a few other solutions but no luck.
Any help would be appreciated.
Thanks.

    


  • How to make a PAN faster/slower speed with FFmpeg ?

    27 février 2019, par Duty Alex

    I have an image named "input.png" 1920x7580 px and i want to make a PAN across it from top to bottom. My current code is :

    ffmpeg -loop 1 -i input.png -vf crop=1920:1080:0:n -frames:v 6500 out.mkv

    My video duration with this default speed is 4:20 (260 second). The scrolling down speed is 25 pixels per second.

    How i increase/decrease this speed without changing the video FPS (25 fps) ? For example my video duration to be 3 minutes.

    Thank you !