Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (32)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5974)

  • Setting very fast movie speed

    24 avril 2018, par JoeSkurczysyn

    He tries to set the movie’s acceleration to 70 minutes so that a movie with a maximum length of 2 minutes will come out. However, FFMPEG fails. Films with a length of over 20 minutes come out, which is not what they expect.

    I write this :

    ffmpeg -i output.mp4 -filter:v "setpts=0.90*PTS" -an output2.mp4

    What am I doing wrong ?

  • How to speed up ffmpeg video conversion

    22 avril 2018, par user2993497
    ffmpeg -i video.mp4 -c:v libvpx-vp9 -keyint_min 150 -g 150 -tile-columns 4 -frame-parallel 1  -f webm -dash 1 -an -vf scale=160:190 -b:v 250k -dash 1 video_160x90_250k.webm -an -vf scale=320:180 -b:v 500k -dash 1 video_320x180_500k.webm -an -vf scale=640:360 -b:v 750k -dash 1 video_640x360_750k.webm -an -vf scale=640:360 -b:v 1000k -dash 1 video_640x360_1000k.webm -an -vf scale=1280:720 -b:v 1500k -dash 1 video_1280x720_1500k.webm

    I’m converting a single video into multiple videos at different resolutions. But it’s painfully slow. how can I speed this up ?

  • how do I set speed rate (ex:double speed) in FFmpeg library ?

    19 avril 2018, par geeeek

    I’m working on rtsp live video from ffmpeg and rendering it on the screen.

    However, the image is displayed after 1 to 2 seconds.

    to reduce video delay, So I want to increase the playback speed in my program.

    int64_t duration = m_formatCtx-> duration;
    duration = duration * 1000;
    av_seek_frame (m_formatCtx, m_videoStream, duration, AVSEEK_FLAG_ANY);
    av_seek_frame (m_formatCtx, m_audioStream, duration, AVSEEK_FLAG_ANY);
    while (av_read_frame (m_formatCtx, & m_packet)> = 0)

    I can not get the result I want in this way.