Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7346)

  • How to implement FFMPEG to android studio project [on hold]

    3 octobre 2016, par Light

    How to Implements FFMPEG to android studio project

    help please

  • Anomalie #4422 (Nouveau) : PHP 7.2 : warning sur count() dans ecrire/public/aiguiller.php

    7 janvier 2020, par - Equipement

    Bonjour,
    Sous PHP 7.2, avec SPIP 3.2 (et également avec SPIP 3.3), il y a deux "Warning" dans ecrire/public/aiguiller.php.
    - Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 228
    - Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 242
    Cela concerne :

    1. <span class="CodeRay"><span class="keyword">if</span> (<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) <span class="keyword">and</span> ...
    2. <span class="keyword">if</span> ((<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) == <span class="integer">0</span>))
    3. </span>

    Télécharger

    Cordialement
    Equipement

  • How to reflect changes on video using FFMEG library and JNI ?

    17 juin 2014, par Sandeep Tiwari

    I am making a video editor application for Android using FFMpeg. In this app I have made some changes on video like decreasing the duration of the video, drawing some text over it or change it’s orientation. I manage these changes locally easily, but when user want to share this video on YouTube/Facebook etc. it needs to apply these changes to the actual video. I am using the FFMpeg library. Taking help of http://dranger.com/ffmpeg/. I am not using FFMpeg commands.

    Can anyone guide me how to implement this functionality by using C code in FFMpeg ? Any help is very appreciable.
    I have already build FFMpeg in my project, now I want to make export a video with all changes made. I am searching on Google but I can’t find how to do it. I have also fetched frames from video using FFMpeg.