Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (47)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • 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

Sur d’autres sites (7235)

  • lavc/vvc : Use pps->{width, height} over sps->{width, height}

    15 février 2024, par Frank Plowman
    lavc/vvc : Use pps->width, height over sps->width, height
    

    The PPS should be used instead of the SPS to get the current picture's
    dimensions. Using the SPS can cause issues if the resolution changes
    mid-sequence. In particular, it was leading to invalid memory accesses
    if the resolution decreased.

    Patch replaces sps->width,height with pps->width,height. It also
    removes sps->width,height, as these are no longer used anywhere.

    Fixes crash when decoding DVB V&V test sequence
    VVC_HDR_UHDTV1_ClosedGOP_Max3840x2160_50fps_HLG10_res_change_without_RPR

    Signed-off-by : Frank Plowman <post@frankplowman.com>

    • [DH] libavcodec/vvc/vvc_ctu.c
    • [DH] libavcodec/vvc/vvc_ctu.h
    • [DH] libavcodec/vvc/vvc_filter.c
    • [DH] libavcodec/vvc/vvc_mvs.c
    • [DH] libavcodec/vvc/vvc_ps.c
    • [DH] libavcodec/vvc/vvc_ps.h
    • [DH] libavcodec/vvc/vvc_refs.c
  • using ffmpeg implementation live video/audio

    14 mars 2018, par geeeek

    I am going to implementation live video/audio service using ffmpeg.

    I am using embedded board with camera, mic. Receiver is android phone.

    as summary :
    sender : embedded board.
    receiver : android phone.

    I have an embedded board with a camera and a microphone. The camera’s data is raw h264 data, and the audio data is raw pcm data. I want to do live video communication with Android phone, but I do not know how.

    I would like to mux two data with ffmpeg and send it, but I do not know if it is possible. Thank you for your advice.

    I can not be sure because I have no experience about ffmpeg in live.

    About above enviroment please suggest your best methods.

  • Live stream PowerPoint + Video - ffmpeg ? [on hold]

    21 novembre 2016, par Mango

    I’m in the unenviable position of needing to live stream a seminar with one video camera and PowerPoint. We need to switch between the video and PowerPoint at arbitrary times. The switch need not be fancy like a dissolve, and in fact it can take up to three seconds. The audio however must remain uninterrupted and must be synced with both video streams.

    I had the idea of creating a batch file with two ffmpeg commands : one that captured the desktop, and one that captured video from the camera. ffmpeg pushes the video to a local UDP port. Then, it loops.

    A separate ffmpeg process receives the local stream and pushes it to an RTMP server. All I have to do to switch video sources is kill the first ffmpeg.

    This works for video, but I haven’t figured out how to get the audio to sync.

    I’m aware of expensive video production software that provides this sort of thing as a service, but I thought I would see if I could do it open source if possible.

    Any suggestions would be appreciated.