Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (34)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (2949)

  • Lossy compression for video files before being uploaded on server (Django web app)

    2 avril 2016, par Hassan Baig

    I need a bit of guidance. I have a Django app, where users upload photos and captions.

    I want to integrate video uploading and playback as well. My question revolves specifically around video file size.

    Most of my users have bandwidth issues. It’s best if uploaded videos are as small a size as possible (quality can be compromised upon, it can be lossy). What’s the best currently-supported Python library to get me started on this (an illustrative example) ? I do something similar for photos uploaded on my site using Python Imaging Library.


    Pyffmpeg seems to be the closest fit so far. But it doesn’t seem to be supported any longer, nor do I find examples of what I’m trying to achieve. ffmpeg seems to be well documented however.

  • Compression rate (final size) ffmpeg with h263 as codec, can be improved ?

    29 août 2013, par voskyc

    With the following data :

    Sample 1 :
    vcodec : H263
    Duration : 4seconds
    Resolution:1288/720
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file : 5.84MB.

    Sample 2 :
    vcodec : H263
    Duration : 4seconds
    Resolution:640/480
    FR : 30fps/s
    datarate : 195.135 kB/s
    MP3 : 44HZ, 16bits


    Size file = 3.34MB.

    Both in flv container.

    Aren't those sizes a little bit high for 4 second video ?

    I believe we are doing some kind of error or missing an optimization.
    Should we decrease the datarate ?
    Maybe we are missing some option for h263 encoding with FFMPEG ?.

    Thanks a lot in advance for your suggestions.

    Note : no, we "can not" use h264. :-)

  • video compression using ffmpeg not working save as empty file after conversion

    25 mars 2019, par HEMANTH KUMAR

    I’m using CodeIgniter and also installed FFmpeg

    I have converted the big size video to small size and it worked in localhost.

    On the live server it’s converting but saving has an empty file.

    $v = '/var/www/html/login/public/restaurants/171/items/'.$rowv->item_id.'/'.$rowv->image;              
    $info = pathinfo($rowv->image);
    $v2 ='/var/www/html/login/public/restaurants/171/items/'.$rowv->item_id.'/'.'demo'. '.' . $ext;


    $a = exec("ffmpeg -y -loglevel error -i ".$v." -vcodec libx264 -crf 28 -preset faster -tune film ".$v2);