Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (60)

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • avformat/framecrcenc : Don't read after the end of side-data

    6 décembre 2020, par Andreas Rheinhardt
    avformat/framecrcenc : Don't read after the end of side-data
    

    Nothing guarantees that the size of side data containing a palette
    is actually divisible by four (although it should be) ; but for
    big-endian systems, an algorithm is used that presupposed this.
    So switch to an algorithm that does not overread : It processes
    four bytes at a time, but only if all of them are contained in
    the side data.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/framecrcenc.c
  • merging sensor data and a video with ffmpeg on android

    21 juin 2020, par hannes

    I have a recorded video file and a simultaneously recorded csv-file with sensor data in external storage on android. Now I need to overlay the sensor data to the video and save it again.

    &#xA;

    At the moment I try to do it with ffmpeg. My approach is to write one value of the sensor data to a textfile which can be used as input for the drawtext command. After the frame is generated the textfile file should be updated with the next sensor value and so on. In combination with reload=1 I think this should work. My Problem is that I don't know when a frame was created by ffmpeg to update the textfile ? Do I need to pause the ffmpeg command until the textfile has been updated ?

    &#xA;

    Or does someone have another (better) idea ?

    &#xA;

  • How to make FFMPEG insert dynamic data in a video stream ?

    10 juin 2016, par Bepeho

    I’m trying to add an dynamic overlay to a file FFMPEG is generating for me.

    The overlay must display data received in real-time (let’s say the speed of a car where the video is being recorderd)

    Note that my question is not about displaying things in the video, but about how to have FFMPEG receive this data so it can display them.

    Has anyone done this before ? How ?

    Thank you