Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (56)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

  • Fix more GCC warnings about case fall-through

    6 mai 2018, par Erik de Castro Lopo
    Fix more GCC warnings about case fall-through
    

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/lpc_intrin_sse41.c
  • flac/encode.c : Limit padding size

    9 janvier 2016, par Erik de Castro Lopo
    flac/encode.c : Limit padding size
    

    This prevents a too large padding value overflowing the block length.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>
    Closes : https://sourceforge.net/p/flac/bugs/284/

    • [DH] src/flac/encode.c
  • ffmpeg - adding Dynamic logo & random position watermark to video ?

    9 août 2021, par JackS

    I am making a tutorial for sending through mail to my uses, and to avoid piracy distribution I thought to put watermarks (logo.png) at random places at interval on the videos.

    &#xA;

    I tried using the command from ffmpeg - Dynamic letters and random position watermark to video ? :

    &#xA;

    ffmpeg -i input.mp4 \&#xA;-vf \&#xA;"drawtext=fontfile=font.ttf:fontsize=80:fontcolor=yellow@0.5:text=&#x27;studentname&#x27;: \&#xA; x=if(eq(mod(t\,30)\,0)\,rand(0\,(W-tw))\,x): \&#xA; y=if(eq(mod(t\,30)\,0)\,rand(0\,(H-th))\,y)" \&#xA;-c:v libx264 -crf 23 -c:a copy output.mp4&#xA;

    &#xA;

    But it gave me error :

    &#xA;

    [NULL @ 0x55c812525600] Unable to find a suitable output format for &#x27;\&#x27;&#xA;\: Invalid argument&#xA;

    &#xA;