Recherche avancée

Médias (91)

Autres articles (75)

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

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

Sur d’autres sites (10396)

  • avformat/tee : allow packets with negative timestamps

    14 juillet 2020, par Jan Ekström
    avformat/tee : allow packets with negative timestamps
    

    As this is a meta muxer and the same flag is set with the fifo
    meta muxer, there is really no reason not to have this set here
    as well.

    Signed-off-by : Jan Ekström <jan.ekstrom@24i.com>

    • [DH] libavformat/tee.c
  • avfilter/vf_lut3d : support remaping negative values in the prelut

    5 septembre 2020, par Mark Reid
    avfilter/vf_lut3d : support remaping negative values in the prelut
    
    • [DH] libavfilter/vf_lut3d.c
  • Ffmpeg segment negative audio pts

    24 juillet 2020, par user3533414

    I’m trying to segment an mp4 file using the following command ;

    &#xA;

    ffmpeg -i input.mp4 -map 0 -c copy -f segment -reset_timestamps 1 "test-%01d.mp4"

    &#xA;

    and it’s outputting the mp4 files but all segments except the first one starts with negative audio pts. So far I have tried using “-avoid_negative_ts make_zero”, “-fflags +genpts” options without any luck.

    &#xA;

    If I remove reset_timestamps option, everything is fine but I need to have each segment to start with near zero pts.

    &#xA;

    Can anyone help with the issue ?

    &#xA;