Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (77)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (9139)

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