Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (90)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • Evolution #4391 : Squelettes de la dist : améliorer le markup et passer à BEM

    14 octobre 2019, par tcharlss (*´_ゝ`)

    Un autre point à ajouter possiblement au cahier des charges : passer les CSS en mobile-first.
    Donc partir sur des

    <span class="CodeRay"><span class="directive">@media</span> (<span class="type">min-width</span>: <span class="error">N</span><span class="error">p</span><span class="error">x</span>)</span>

    au lieu de

    <span class="CodeRay"><span class="directive">@media</span> (<span class="type">max-width</span>: <span class="error">N</span><span class="error">p</span><span class="error">x</span>)</span>
  • ffmpeg concatenate with dynamic chunks

    28 octobre 2015, par vongolashu

    The ffmpeg docs for concat lists the following way
    ffmpeg -f concat -i mylist.txt -c copy output

    The mylist.txt file contains file like
    file ’/path/to/file1’
    file ’/path/to/file2’
    file ’/path/to/file3’

    What I am looking is for a way to do this concat in a persistent way where the number of files can keep increasing, for example in livestreaming
    I will be sending chunks of video (mp4 files) of 10 seconds each to my server and want to concat/stitch them together to output to a RTMP stream (for livestreaming)

    If concat is not the proper way to do this, please suggest alternatives.

    Really interested to know how people use the above concept (I hope its how it works) to send video chunks from mobile device for livestreaming

  • Android screencast function with Device been Root

    4 août 2015, par facebook-1663245907229773

    I am working on how to create a smooth mp4 format video in an android device which has been rooted. (This means that we already have the permission to access frame buffer).

    But now i have no idea to figure out this function. My current idea is :

    1. Screenshot a lot of screen image according to /dev/graphics/fb0

    2. Convert images to video use ffmpeg in android

    I am facing a few issues :

    1. I cant screenshot large images. This action is very costly to the CPU which may cause the mobile phone to run unsmoothly.

    2. Even if I screenshot enough images, it take lots of time to convert images into mp4 video.

    My ffmpeg command is as below :

     ./ffmpeg -y -f image2 -i /mnt/sdcard/image%d.jpg -s 320x240 /mnt/sdcard/temp/test.mp4

    Any suggestions ?