Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (106)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9886)

  • How to overlay clock with real-time in screen recording using ffmpeg for Sharex open source ?

    1er septembre 2022, par calengineer

    I currently have ShareX and using the following command but the clock with real time is not being added and the video gets considerably cut. A 30 second video turns out to be a 4 second video.

    


    -hide_banner -f dshow -thread_queue_size 1024 -rtbufsize 256M -audio_buffer_size 80 -framerate 30 -i video="screen-capture-recorder":audio="virtual-audio-capturer" -f dshow -i audio="Microphone (HyperX QuadCast S)" -filter_complex amix=inputs=2:duration=longest -vf "drawtext=fontfile=/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf: \ text='%{localtime\:%T}': fontcolor=white@0.8: x=7: y=700" -c:v libx264 -r 30 -preset ultrafast -tune zerolatency -crf 28 -pix_fmt yuv420p -movflags +faststart -c:a aac -ac 2 -b:a 128k -y "output.mp4"


    


  • Cut the stream at specific clock time in FFMPEG

    14 juin 2017, par Fearhunter

    I use the following command from ffmpeg to cut my live stream from VLC :

    ffmpeg -i InputStreamURL -acodec aac -strict -2 -vcodec libx264 -hls_wrap 100 -f hls -hls_time 20 /var/www/html/ts/1.m3u8

    Now I want to cut the stream at a specific time like for example 09:00 am till 12:00 PM. I was reading about the segment muxer in the FFMPEG documentation. I read the following command :

    segment_atclocktime 1|0
    If set to "1" split at regular clock time intervals starting from 00:00 o’clock. The time value specified in segment_time is used for setting the length of the splitting interval.
    For example with segment_time set to "900" this makes it possible to create files at 12:00 o’clock, 12:15, 12:30, etc.

    Default value is "0".

    Is there a other command to specify a timestamp to record the stream ? This is my my interface I am gonna build :

    Live

    The scenario is :

    1 : enter stream URL
    2 : begin time = 15:00 pm
    3 : end time = 17:00 pm
    4 : pieces = 3

    Conclusion :

    15:00 - 17:00 = 2 hours
    2 hours * 3600 = 7200 seconds
    7200 / 3 = 2400 seconds for each sliced video

    How can I use segment_atclocktime for this scenario ?

  • avutil/random_seed : Reduce the time needed on systems with very low precission clock()

    24 décembre 2016, par Michael Niedermayer
    avutil/random_seed : Reduce the time needed on systems with very low precission clock()
    

    This should fix issues on BSD
    CLOCKS_PER_SEC is 128 on BSD while SUSv2 requires it to be a million

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/random_seed.c