Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (61)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8094)

  • Can I have time stamps on my screen recording [closed]

    27 décembre 2023, par user23160856

    I have been looking around for a way to add timestamps with dates on my screen records (I am using a Mac and have recorded them via cmd + 5). I ran into an issue of not having timestamps on the recordings which I need for a project and I have to have the timestamps on the vid recordings.

    


    I saw a few places where ffmpeg is a good option. I have managed to install it. However im unsure if theres a way for me to include the timestamps on my previous recording or would I need to record a brand new vid with ffmpeg's screen record options and if yes, I don't see any that boasts of such an option. Hoping someone is able to assist !

    


    I have downloaded ffmpeg and tried this string on a prerecorded screen recording

    


     ffmpeg -i <input /> -vf "drawtext=text=&#x27;%{localtime\:%T}&#x27;" -f flv <output>&#xA;</output>

    &#xA;

    I was successful but theres 2 issues. I need the date stamp and time stamp. The second issue was that it gave it the time stamp at the current time of conversion and not the time of the recording.

    &#xA;

    I am fairly new to these aspects and open to learning more !

    &#xA;

  • Correct recording time of the first frame of a video

    27 juillet 2017, par Vítor Cézar

    How do I get the correct time of the first frame recorded on a video ? I executed the command

    ffprobe -v error -show_streams [file_path]

    and got these values of timecode and creation time for the first stream :

    TAG:creation_time=2017-07-26T16:48:10.000000Z
    TAG:language=eng
    TAG:handler_name=   GoPro AVC
    TAG:encoder=GoPro AVC encoder
    TAG:timecode=17:21:54:28

    The problem is that the video started being recorded on 16:48:11:504 and neither timecode nor creation time shows this value. If possible I need the precision on milliseconds.

  • convert images to video with differing time ranges

    11 juin 2013, par FaultyJuggler

    I have images coming in at random times labeled with their epoch time they were taken. I want to create a video that shows their real time creation in order. FFMPEG (far as I can tell) only allows you to set the framerate.

    For now I'm looking at creating a video file per image that is as long as the gap between the current image and the next image's timestamp, then concatenating all videos together after.

    Is there a better way to do this ?