Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (89)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

Sur d’autres sites (10415)

  • Revision 58c40986e0 : Removing redundant mvsadcost local variables. Change-Id : I19a197b9525172579f253

    11 avril 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/encoder/vp9_mcomp.c



    Removing redundant mvsadcost local variables.

    Change-Id : I19a197b9525172579f253702c77fa76af88f6565

  • FFMPEG not found at my local server

    3 mai 2013, par user2319553

    i have installed ffmpeg on my local server and the phpinfo() function of php is showing that it has been enabled.
    When i am using Video Embed & Thumbnail Generator a wordpress plugin i ahve to specify the location where ffmpeg is installed i.e " Path to applications on server :" and when i enter the url it showing me that ffmpeg is not installed here.

     http://wordpress.org/extend/plugins/video-embed-thumbnail-generator/

    Any help will be pretty much accepted.

  • Piping stdout from child process directly to google cloud storage. Node.js

    2 octobre 2018, par glenn

    anyone here with expertise on piping to google cloud storage ?

    i am using FFmpeg on a server, and want to pipe to my storage bucket.

    I can get it working when I save FFmpeg output to a file, then createReadableStream from the file, and then pipe that to createWriteStream()

    however, I dont want to generate a static file, and then go through that process every time

    Why can I not just simply pipe FFmpeg.stdout.pipe(file.createWriteStream()) ?

    FYI : I am running FFmpeg as a child process

         spawnFFMPEG = () => {
    this.ffmpeg = child_process.spawn('ffmpeg',
     [
       '-f', 'lavfi', '-i', 'anullsrc',
       '-thread_queue_size', '512',
       '-i', '-',
       '-shortest', '-vcodec', 'copy',
       '-f', 'avi',
       'pipe:1'
     ]
    )

    this.ffmpeg.stdout.pipe(myWritableStream)