Recherche avancée

Médias (91)

Autres articles (25)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7738)

  • Anomalie #2109 : Utiliser bcrypt au lieu de SHA256 pour les mots de passe

    19 août 2019, par b b

    Voir r24364 pour faire le lien.

  • Revision 9751aa1264 : Add range checking for decoded coefficients. The coefficient range checking is

    7 octobre 2014, par Yaowu Xu

    Add range checking for decoded coefficients.

    The coefficient range checking is enabled when configured with
    — enable-debug —enable-coefficient-range-checking
    for vpxdec to detect ill-formed input stream. This addresses the
    problem raised by issue #792.

    Change-Id : I3f9ea541de4dc742dd64389d6c5f543fb1c4f052

  • using FFmpeg for cutting the video as the same length as GOP length [closed]

    21 juin 2021, par david

    I have some mp4 video files and I need to split them into smaller sizes with time length as the same as GOP. my GOP is 2 sec. I encode my videos using the following command :

    


    ffmpeg  -i  input_1080p60.mp4  -c:v  libx264 -pix_fmt yuv420p  -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.mp4


    


    now I need to split them into some videos with a time length of 2 sec.
I used the following command but the length of produced videos is 4 sec or some time 3 sec, although I set the segment time equal 2 sec !. do you know what is the problem ?

    


    ffmpeg -i invid.mp4 -threads 3 -vcodec copy -f segment -segment_time 2 cam_out_h264%04d.mp4


    


    is it possible to save them with different bitrate such as 1000K and format h264 ? please let me know if you have any suggestions.