Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (50)

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6358)

  • avcodec/jpeg2000dec : Fix x/y step TODO for CPRL

    13 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Fix x/y step TODO for CPRL
    

    No testcase known

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/jpeg2000dec.c
  • MAINTAINERS : Add some maintainers for parts of libavutil

    4 août 2013, par Michael Niedermayer
    MAINTAINERS : Add some maintainers for parts of libavutil
    

    Developers added are active and in the copyright of the specified files,

    If anyone wants to maintain anything else, send a patch that adds you to
    MAINTAINERS.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] MAINTAINERS
  • How to cut a Video and mute it in one step with FFmpeg ?

    6 mars 2016, par user3037960

    I tried this :

    "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4"

    Because I know this is for cutting a s

    "ffmpeg -i input.mp4 -ss 00:00:50.0 -codec copy -t 20 output.mp4"

    And I know this is for muting (deleting the all the sound from the video) :

    "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4"

    from here : http://unix.stackexchange.com/a/33864

    It doesnt work. naturally. otherwise I wouldnt ask here.

    Who knows the answer ? thx