Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (94)

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

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

Sur d’autres sites (7240)

  • lavc/videotoolboxenc : support additional options

    20 mai 2023, par Rick Kern
    lavc/videotoolboxenc : support additional options
    

    Added support for more VideoToolbox encoder options :
    - qmin and qmax options are now used
    - max_slice_bytes : Max number of bytes per H.264 slice
    - max_ref_frames : Limit the number of reference frames
    - Disable open GOP when the cgop flag is set
    - power_efficient : Enable power-efficient mode

    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • Generate and concatenate videos from images with ffmpeg in single command

    17 août 2022, par YulkyTulky

    My goal is to generate a video from images. Let's say I have 2 images 1.png and 2.png.

    &#xA;

    I can do

    &#xA;

    ffmpeg -loop 1 1.png -t 3 1.mp4&#xA;

    &#xA;

    ffmpeg -loop 1 2.png -t 5 2.mp4&#xA;

    &#xA;

    to create a 3 second video from the first image and 5 second video from the second image.

    &#xA;

    Then, I merge the two videos using

    &#xA;

    ffmpeg -i 1.mp4 -I 2.mp4 -filter_complex "concat" final.mp4 &#xA;

    &#xA;

    to create my final 8 second video.

    &#xA;

    This process seems extremely inefficient, and I feel I do not have to use all this processing power+disk reading/writing to create 2 intermediary video files when I only want the one final video.

    &#xA;

    Is there a way to execute this entire process in one ffmpeg command (efficiently) ?

    &#xA;

  • How to merge list of videos with frame specifiec order using ffmpeg ?

    9 décembre 2015, par Il'ya Zhenin

    I have a list of files :

    even_0.avi
    odd_0.avi
    even_1.avi
    odd_1.avi
    ...
    even_n.avi
    odd_n.avi

    And I want to merge them in a single video file in such a way, that zero frame would be taken from even_0.avi, first frame from odd_0.avi, second - from even_0.avi and so on.

    And if all frames in even_0.avi are taken, then next frame we will take from even_1.avi, next from odd_0.avi, next again from even_1.avi. Basically, when one video ends, we just start taking frames from the next video with prefix "even_" or "odd_".

    I just started using ffmpeg, know, how to simply merge videos, change resolution, fps and so on, but this is beyond my power, so, please, help.