Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

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

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

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

  • Anomalie #4375 : Tests unitaires en erreur

    24 octobre 2020, par Franck D

    Hello
    Juste pour dire que j’ai refait les tests en php 8 en mettant la proposition de b_b https://core.spip.net/issues/4579#note-2
    Windows 10 (1909)

    Laragon avec :
    Php 8.0.0RC2 (VS16 x64 Non Thread Safe) https://windows.php.net/qa
    Apache 2.4.46 Win64 avec mod_fcgid-2.3.10-win64-VS16 https://www.apachelounge.com/download/
    Mysql 8.0.22 (mysql-8.0.22-winx64.zip) https://dev.mysql.com/downloads/mysql/
    phpMyAdmin 5.0.4 https://www.phpmyadmin.net

    Prefix des tables à l’installation : "test1"
    SPIP 3.3.0-dev GIT [master : 08981b68]

    Cela donne 32 échecs dont le retour de sql_insert_select maintenant, ce n’est pas forcément "grave" dans le sens ou il y en a pas mal, avec https://core.spip.net/issues/4576 donc possible qu’en corrigeant Textwheel, le nombre d’échec se réduise considérablement

  • Sync audio from microphone and video from camera, saved in seperate files, using ffmpeg

    20 octobre 2023, par Lucas

    I am grabbing frames coming up from my camera using a pipe and simultaneously the audio coming from a microphone.

    


    I would like to have the audio and video in seperated files but precisely synchronized.

    


    I have tried to set the pts of both stream using the internal computer clock by setting the use_wallclock_as_timestamps option.

    


    But when I take a look into the duration of both video and audio using mediainfo, the duration has a delay of 10 to 100 ms between them.

    


    Here is the code I used so far :

    


    ffmpeg -y //
-f rawvideo -pixel_format bgr24 -video_size 2048x1088 -use_wallclock_as_timestamps 1 -i - //
-f alsa -ac 2 -use_wallclock_as_timestamps 1 -i sysdefault:CARD=H4 //
-map 0 -c:v mpeg4 -qscale:v 1 -vf "setpts=PTS-STARTPTS" -fps_mode cfr -r 50 Camera.avi //
-map 1 Audio.wav 


    


    when running this command ffmpeg prompts that the starting time of the video stream is ahead of the audio, resulting to a delay. Unfortunately this delay does not correspond to the total delay
I get at the end.

    


    I am running on linux 20.04.

    


  • opencv vs live555 vs ffmpeg for decoding rtsp stream with added metadata ?

    17 août 2021, par Peter Parker

    From an IP camera I must decode a h.264 encoded rtsp transport stream containing a program clock reference (PCR), transmitted in the adaptation field of the TS packet. I am using a Windows machine.

    


    This PCR field is transmitted at least every 100ms.

    


    I need to extract this timestamp data for each frame of the video.

    


    I would also like to use OpenCV to process each frame, whilst acknowledging the current time, based on the PCR field value.

    


    OpenCV is not capable of decoding the live rtsp url AND it discard the ancillary data I need.

    


    Do I need to use live555 along with ffmpeg to decode the stream ? Or is it possible to extract this data using ffmpeg and opencv libraries alone ?

    


    Suppose I embed a SMPTE/MISB compliant Microsecond Timestamp (KLV metadata packet) in the VANC space after achieving this.

    


    Will the same strategy work ?

    


    Thanks in advance for any pointers.