Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (59)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9020)

  • avfilter/avf_showspectrum : add log scale for frequency plot

    28 avril 2019, par Paul B Mahol
    avfilter/avf_showspectrum : add log scale for frequency plot
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showspectrum.c
  • Révision 21414 : report de r21413 : bloquer l’accès aux fichiers cachés cf http://archives.rezo.n...

    30 juin 2014, par b b
  • 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.