Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (8489)

  • ffmpeg video compression taking too much time to execute

    13 mai 2015, par Rakhi

    I want to compress video file while uploading the video. I installed the ffmpeg for this and , I am using the below code.

    Code for video stream compression :-

    shell_exec($ffmpeg -i test.mp4 -s 320x240 new.mp4);

    Video getting compressed. But this takes too much time to compress and I always getting "Maximum execution time of 30 seconds exceeded", error for this.

    Please help me to sort out this. I don’t want to change my maximum execution time. Is there is any mistake in the above code please help me to rectify it or suggest me another method or code...

  • Softwares for adding real time text to a video [on hold]

    30 juillet 2013, par user763410

    I am trying to add real time text (like weather information, stock quotes) to a video and broadcast it. My videos are going to be 2 hours long. I have been searching for decent softwares which can do the work for me. FFmpeg can do overlays only if text to be added is available fully before running ffmpeg code, so its not real time. I have not been able to able to get gstreamer to work on my hardware.

    So, My question is :
    Please suggest some softwares which can add (text)data to a video in real time.
    Please don't post comparisons as that will trigger moderator's anger ! I don't want to start a flame war. Purpose of the question is to make a list. Btw, this should work from command line rather than a GUI.

    (Ps : If the question is closed because of being "not cnonstructive, please answer it on my google docs page here.
    http://goo.gl/14dR2H)

    Thanks very much in advance.

  • Time stamped video to time stamped images

    16 mai 2015, par Andrew

    I have a time stamped AVI video file.

    I want to create images from the frames of the video but I need them to also have a time associated with them as well.

    I can create images from the video through FFmpeg using :

    ffmpeg -i video.avi -r 0.1 image_%05.jpeg

    However this images do not have a time embedded. Is it possible to also take the time associated with each frame in the video ?

    My end goal is to sync the time stamp with a GPS track to geotag the images (from the video frames.)