Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11259)

  • Use ffmpeg/avconv to re-stram a combined stream ?

    28 novembre 2014, par Terminello

    Having two separate stream sources (audio and video) each from an IP-camera, I would like to

    • combine them into a single stream
    • save this into a file (using segmentation)
    • re-stream (specific word unknown for me, sorry) the combined stream so that other users may access it without having to combine the streams on their own

    The first two things : I have already accomplished like that :

    ffmpeg -use_wallclock_as_timestamps 1 -f mjpeg -i 'http://camera.ip.address/videostream.cgi?user=username&pwd=password' -i 'http://camera.ip.address/videostream.asf?user=username&pwd=password' -map 0:v -map 1:a -acodec copy -vcodec copy -f segment -segment_time 3600 -reset_timestamps 1 'out%03d.mkv'

    Credits go to santiago (foscam.com forums)

    But how to make this stream available on the LAN at the same time while being recorded and saved to HDD ?

    BTW : You might ask, why do I need this : Because many clients do not have capabilitys to combine a stream from multiple sources, so I set up a server which does this task and clients do not go directly to the audio/video source (IP-camera) but catch the newly generated stram = : the idea.

  • UDP : join multicast group on the interface specified with &localaddr=

    13 décembre 2013, par Stoian Ivanov
    UDP : join multicast group on the interface specified with &localaddr=
    

    When joining multicast groups, ffmpeg was using INADDR_ANY as interface address
    which leads to enabling the multicast group on the interface with "default gateway".
    Often multicast traffic is received over dedicated interface, which scenario ffmpeg was
    unable to handle. With this patch, ffmpeg will enable multicast group to the interfaces
    configured with address specified in &localaddr= parameter of udp :// URL. To avoid
    loacal_addr resolve at udp_close(...) the UDPContext structure was extended with
    struct sockaddr_storage local_addr_storage member, which is populated in udp_open(..)
    and passed to udp_join_multicast_group() and udp_leave_multicast_group().

    Signed-off-by : Stoian Ivanov <s.ivanov@teracomm.bg>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/udp.c
  • Support broadcast destination for udp protocol

    9 avril 2014, par Olivier Langlois
    Support broadcast destination for udp protocol
    

    Use the required socket option SO_BROADCAST to be able to stream to a broadcast
    address.

    Prior to the patch, trying to stream to a broadcast address was resulting to the
    following error :

    av_interleaved_write_frame() : Permission denied

    The patch has been tested with :

    ffmpeg -f v4l2 -framerate 30 -input_format yuyv422 -video_size 640x480 -i /dev/video0 \
    -c:v libx264 -profile:v high -preset ultrafast -tune zerolatency -b:v 500k -pix_fmt yuv420p \
    -f mpegts udp ://192.168.1.255:5004 ?broadcast=1

    I have added an option to let the user explicitly request broadcast in order to avoid
    ffmpeg to broadcast unintentionally.

    Signed-off-by : Olivier Langlois <olivier@trillion01.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/udp.c