Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (52)

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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (4052)

  • How to use ffmpeg to encode isolated motion vectors (using codecview)

    22 juillet 2021, par Temmeh

    I have been successfully using this command to superimpose MPEG motion vectors onto a video :

    


    ffmpeg -v error -flags2 +export_mvs -i input.mp4 -vf codecview=mv=pf+bf+bb -y output.mp4

    


    Now I would like to be able to export an h264 mp4 of just the motion vector arrows, like in this example, without the original video layered underneath. I checked the codecview documentation and and did not find a flag or option to do this.

    


    Any help is appreciated !

    


  • How to get 4 different quality from ffmpeg ?

    27 juin 2021, par Mamazi-Avia

    I have used ffmpeg to convert mp4 videos to m3u8, now I have seen a new structure due to my new player on the website. An online converter creates 4 different folders (hd, hq, lq, mq), an enc.key (like the image below), and of course a playlist file. how can I get this exact configuration from running ffmpeg on my system ?
thank you in advance :)

    


    folders configuration

    


  • Can I know the exact timestamps of a ffmpeg trim ?

    17 juin 2021, par Vincent Garcia

    I want to trim very long video (e.g. >20h long) and I use ffmpeg this way :

    


    ffmpeg -ss 7200 -i /path/to/my/video.mp4 -t 600 -codec copy out.mp4


    


    This is supposed to provide a trim of 10 minutes starting 2 hours in the input video.
As I read online, by placing -ss before the -i option, I'll get an approximate trim.

    


    Is there a way to know precisely when the trim actually started ?

    


    Thank you.