Recherche avancée

Médias (91)

Autres articles (49)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

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

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

  • Youtube-dl and Shell speed

    7 août 2016, par JJ The Second

    So I’ve been experimenting with youtube-dl on Ubuntu 14 recently and I should say downloading is well fast even I have a 1GB Ubuntu LAMP but when it comes to triggering FFMPEG and deleting process hangs for a good time. Even worked with -k but as soon as FFMPEG process is completed, it takes time to respond. I do understand this is a big subject but I’d really like to hear your thoughts, what amazes me is how a website like thisis running in less than a second ? Here is what I have,

    [youtube] UxxajLWwzqY: Downloading webpage
    [youtube] UxxajLWwzqY: Downloading video info webpage
    [youtube] UxxajLWwzqY: Extracting video information
    [info] Writing video description metadata as JSON to: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].info.json
    [download] Destination: /var/www/html/download/Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO].m4a
    [download] 100% of 2.73MiB in 00:00
    [ffmpeg] Correcting container in "/var/www/html/download/title.m4a"
    [ffmpeg] Destination: /var/www/html/download/title.mp3
    Deleting original file /var/www/html/download/title.m4a (pass -k to keep)
    youtube-dl "http://www.youtube.com/watch?v=UxxajLWwzqY" --write-info-json  --extract-audio --audio-format mp3  -o "/var/www/html/download/%(title)s.%(ext)s"

    I really don’t understand how this is done so fast ? Is there anything I’m missing ?

    Thanks for your time.