Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

  • Detect scene change on part of the frame

    16 juin 2021, par user18130814200115

    I have a video file of an online lecture cosisting of a slideshow with audio in the background.
    
I want to save images of each slide as well as the timestamp of that slide.
I do this using the scene and metadata filters :

    


    ffmpeg -i week-01.mp4 -filter_complex "select='gt(scene,0.011)',metadata=print:file=frames/time.txt" -vsync vfr frames/img%03d.jpg


    


    This works fine exept for one thing, there is a timer onscreen on the right in the video file.
If i set the thershold small enough to pick up all the slide changes, it also picks up the timer changes.

    


    So here is my question, Can I ask ffmpeg to :

    


      

    1. analize part of the frame (only the right side till roughly 75% to the left).
    2. 


    3. Then, on detecting a scene change in this area, save the entire frame and the timestamp.
    4. 


    


    I though of making a script that

    


      

    1. crops the video and saves it alongside the origional
    2. 


    3. analize the cropped video for scene changes and save the timestamps
    4. 


    5. extract the frames from the origional video using the timestamps
    6. 


    


    Is there a better/faster/shorter way to do this ?
Thanks in advance !

    


  • ffmpeg recording a mp4 and taking pictures on 1st, 15th and 30th seconds in parallel [duplicate]

    29 mai 2019, par Homer-S

    This question already has an answer here :

    I want to record a webcam stream for 30 seconds and in parallel there should be three pictures taken at 1,15,30 seconds.

    This my code and recording is working well but I have issue with the 30 seconds record time. Pictures are taken but a lot more and if I only go for fps=1/15 I am receiving none from 1st second ...

    ffmpeg -i "http://192.168.100.111:9000/?action=stream" -f image2 -vf fps=3  /home/pi/cam/image%03d.jpg -f image2 -vf fps=1/15  /home/pi/cam/img%03d.jpg -vcodec copy -an -bufsize 2048k -t 00:00:30 -y

    Thanks for your help

  • avformat/hlsenc : compute video_keyframe_size after write keyframe

    18 septembre 2020, par Steven Liu
    avformat/hlsenc : compute video_keyframe_size after write keyframe
    

    fix ticket : 8636
    When write keyframe and the keyframe is the frist packet of the segment,
    then compute the size of the keyframe which have been write into segment
    first packet. and set the start position of the segment, should not use
    avio_tell(vs->out) to get the keyframe position, because it can be set
    to 0 if close at above of the workflow, that maybe inaccurate, but the
    start_pos can be used here, because start_pos is set after write
    the previous packet.

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : liuqi05 <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c