Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (74)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (14347)

  • cbs : Describe allocate/free methods in tabular form

    27 juillet 2020, par Mark Thompson
    cbs : Describe allocate/free methods in tabular form
    

    Unit types are split into three categories, depending on how their
    content is managed :
    * POD structure - these require no special treatment.
    * Structure containing references to refcounted buffers - these can use
    a common free function when the offsets of all the internal references
    are known.
    * More complex structures - these still require ad-hoc treatment.

    For each codec we can then maintain a table of descriptors for each set of
    equivalent unit types, defining the mechanism needed to allocate/free that
    unit content. This is not required to be used immediately - a new alloc
    function supports this, but does not replace the old one which works without
    referring to these tables.

    • [DH] libavcodec/cbs.c
    • [DH] libavcodec/cbs.h
    • [DH] libavcodec/cbs_internal.h
  • FFMPEG - Instructional video combining letters to a background to form a word

    6 juin 2020, par Knide

    I'm trying to help with coding a FREE site for instructional video for kids on how to write in australian. To help with the current pandemic that we are experiencing right now.

    



    Anyway, I'm new to ffmpeg and would like to do the letter combinations programatically using it.

    



    So basically I have a form where teachers or parents can enter a word, and I have video instructions for each letter, and would combine them to form the word.

    



    Example : Dog

    



    This is the background :
https://drive.google.com/file/d/1Ds1sRKQ98c5d31dI6qkqTrp1U9f89nv2/view?usp=sharing

    



    These are the letters :

    



    D - https://drive.google.com/file/d/1DHa1sZ7mklY1p3lquD8h5kTbXaZmtB_z/view?usp=sharing

    



    o - https://drive.google.com/file/d/1Ytwq_3l7x0vRDMEpZpmFjT9QNICYWH_D/view?usp=sharing

    



    g - https://drive.google.com/file/d/16jcOsrSbMSbsk2vsqeMXv9Cc4Uss7qtj/view?usp=sharing

    



    And the output would become :
https://drive.google.com/file/d/1RT38IOwXsL9kW9mj41KrxwfI_kdZy45j/view?usp=sharing

    



    If you could help with supplying what ffmpeg code we could use to have the output video, that would be great.

    


  • create single video form 3 separate videos using FFmpeg

    24 septembre 2019, par Shijin

    I was trying to create single video form 3 separate videos using FFmpeg.

    ffmpeg -y -loglevel debug  -i /home/ubuntu/test/1569317318/15693173181124138568.webm   -i /home/ubuntu/test/1569317318/1569317318867082351.webm   -i /home/ubuntu/test/1569317318/1569317318191333163.webm  -filter_complex '[0]scale=320:-1[a];[1]scale=320:-1[b];[2]scale=320:-1[c];[3]scale=320:-1[d];[a]pad=640:480[x];[x][b]overlay=320[y];[y][c]overlay=0:240[z];[z][d]overlay=320:240;[0][1]amix'  -c:v libx264   -crf 23   -preset veryfast   -shortest   /home/ubuntu/test/1569317318/1569317318478598265.mp4

    This is not woking, It throws an error like bellow

    Invalid file index 3 in filtergraph description
    [0]scale=320 :-1[a] ;[1]scale=320 :-1[b] ;[2]scale=320 :-1[c] ;[3]scale=320 :-1[d] ;[a]pad=640:480[x] ;[x][b]overlay=320[y] ;[y][c]overlay=0:240[z] ;[z][d]overlay=320:240 ;[0][1]amix.

    How to fix it ? If we provide four inputs, It is working