Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (54)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7054)

  • ffmpeg - Compare 2 AVFrames data

    17 mai 2016, par zet voo

    I have 2 AVFrame pointers

    float compareFrame(AVFrame* firstFrame, AVFrame* secondFrame)
    {
       int i,j;
       const size_t image_size = height * width;
       size_t diffbytes = 0;

       for (i=0; i < height; i++)
       {
           for (j=0; j < width; j++) {
               size_t coord = firstFrame->linesize[0]*i + j;
               diffbytes += !!(firstFrame->data[0][coord] ^ secondFrame->data[0][coord]);
           }
       }
       const float percent_diff = (diffbytes / (float)image_size)*100.0;
       return percent_diff;
    }

    But it seems not correct when compare the 2 same AVFrames. How to determine two AVFrames have exactly the same data or not ?

  • ffmpeg moving text drawtext

    8 avril 2016, par BOB

    I’m using ffmpeg library to draw text on video in specific time and i’m success to do that Now i need to move the text from position to another and i can’t do that so can any one suggest me how to do that

    i’m using this command to move text from top to down but i can’t determine the x and Y to move from the x,y to specific x,y

    ffmpeg -i VideoInput.mp4 -vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test':x=(w-text_w)/2:y=w/50\*mod(t\,2):fontsize=65" -acodec copy outputVideo.mp4
  • FFmpeg C++ APIs to detect if a video is rotated (shot on phone)

    11 mars 2016, par williamtroup

    Using the FFmpeg C++ API, is there a way to determine if a video was shot on a phone and if its rotated ?

    When extracting the frames, the are rotated at a 90 degree angle, which is fine, but it would be good to report back that the video is rotated.