Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (36)

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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5116)

  • streaming code doesn't work for Vk.com, work fine on other website

    3 décembre 2018, par Anirudha Gupta

    I am using Compiled binary of ffmpeg in my windows pc and calling the ffmpeg exe by command to livestream the video. The code was working fine on Youtube, Twitter’s streaming site and twitch. Today I tried my code with vk.com and it doesn’t work

    ffmpeg -re -i file:"C:\Users\{username}\Desktop\test.mp4" -acodec libmp3lame  -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -bufsize 6000k -framerate 24 -vb 64k -maxrate 1500k -deinterlace -vcodec libx264 -preset veryfast -g 30 -r 30 -crf 23 -c:a copy -f flv rtmp://stream2.vkuserlive.com:443/live?srv=629725&s={removedforpriavacyreason}=/Bq7vN8RNctg

    I was calling the command this way,it’s work on yt, twitch but it doesn’t work with vk.com it’s keep telling handshake issue.

    I tried to call it with changing the url, In case Vk.com handle the url differently. Anyone have workaround for this, it’s only have problem with vk.com

  • AS3 mp4 save file

    18 février 2015, par Andrei

    I would like to save an mp4 file using AS3 to a user selected directory.
    mp4 is a big file and I would like to download a part of the file (for instance 10 sec) and save to local directory.

    Does anyone know a solution for this ?

    I found a solution that uses ffmpeg that may be compiled as swf and then used from AS3, but not sure how to send the stream from Flash to ffmpeg.

    Thanks for helping.

  • FFMpeg extract frames and save to memory

    1er janvier 2016, par dacio

    How can I extract frames from movie and save it to memory ? I am using FFMpeg and I can extraxt frames to save in on disc but then I need to processing that files and load it to memory. Is there any way to save them directly into RAM ?