Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (62)

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

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

  • ac3dec : Don’t consume more data than the actual input packet size

    15 juillet 2013, par Martin Storsjö
    ac3dec : Don’t consume more data than the actual input packet size
    

    This was handled properly in the normal return case at the end
    of the function, but not in this special case.

    Returning a value larger than the input packet size can cause
    problems for certain library users.

    Returning the actual input buffer size unconditionally, since
    it is not guaranteed that frame_size is set to a sensible
    value at this point.

    Cc : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/ac3dec.c
  • ffmpeg reduce image quality, NOT size [on hold]

    8 juin 2016, par ben_user6260230

    I successfully made a thumbnail from video using FFMPEG.

    ffmpeg -i 'video_location' -vf thumbnail,scale=160:120  -frames:v 1 'image_location.jpg'

    Is there any ’ffmpeg’ command to reduce image size without changing image scale ??

  • How to optimize file size of recorded camera stream ?

    19 août 2021, par Ivan P.

    I am recording stream from camera using different approaches. I tried to record camera stream using ffmpeg. I looked at this question : https://stackoverflow.com/a/26464175/5128696 and used the following command :

    &#xA;

    ffmpeg -i http://user:password@192.168.0.101/video.cgi?resolution=vga -c copy -map 0 -f segment -segment_time 300 -segment_format mp4 "outfile%03d.mp4"&#xA;

    &#xA;

    It worked, but file size peaked at 45Mb for 2 minutes video.

    &#xA;

    Then I used VLC to record stream. Result file for fragment of same length was about 2Mb

    &#xA;

    How do I optimize the recorded file size ? My camera gives 640x480 video stream without audio, and 45Mb is too much.

    &#xA;