Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (76)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (13416)

  • Create a channel system using FFMPEG and FFserver

    27 mars 2014, par Dnaso

    I have been looking all over the internet but cannot find the answer, am I able to create a channeling system with FFMPEG and ffserver ? what I want to do is give users the ability to dynamically add their ip address and start restreaming their cameras (from a predefined list). Would I have to open different instances or can I dynamically add feeds to ffserver, or is this not a viable option ?

    Any help is appreciated,
    Thank you.

  • How to transcode raw uncompressed RTP to an H264 RTSP stream

    10 mai 2019, par Gino

    I am new to streaming and am trying to figure out how to transcode streams via ffmpeg.

    I have a few raw rtp uncompressed streams where some are on address 239.x.x.x and others are on 169.x.x.x.

    I want to setup an RTSP server to grab those streams and transcode them into H264 and stream them out to a new address and port.

    I have tried some ffmpeg commands but I keep getting errors about having to compile ffmpeg with pthreads.

    I have no idea how to do that so does anyone know what commands I can use that will work with the current windows version of ffmpeg ?

    For now, I am just trying to save the stream to a file to see if that works. Command I am using is :

    ffmpeg -i rtp://224.1.1.10:6972 transcoded test.mp4

    and the return I get in the command line is

    ffmpeg version 4.1.3 Copyright (c) 2000-2019 the FFmpeg developers
     built with gcc 8.3.1 (GCC) 20190414
     configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --enable-libmfx --enable-amf --enable-ffnvcodec --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth
     libavutil      56. 22.100 / 56. 22.100
     libavcodec     58. 35.100 / 58. 35.100
     libavformat    58. 20.100 / 58. 20.100
     libavdevice    58.  5.100 / 58.  5.100
     libavfilter     7. 40.101 /  7. 40.101
     libswscale      5.  3.100 /  5.  3.100
     libswresample   3.  3.100 /  3.  3.100
     libpostproc    55.  3.100 / 55.  3.100

    [udp @ 000002cb292abf40] 'circular_buffer_size' option was set but it is not supported on this build (pthread support is required)  
    [udp @ 000002cb292bc200] 'circular_buffer_size' option was set but it is not supported on this build (pthread support is required)  
    rtp://224.1.1.10:6972: Immediate exit requested  
    Exiting normally, received signal 2.
  • Recording RTP stream in segments based off traffic

    8 novembre 2018, par MapZombie

    I’m looking to record multiple multicast RTP audio stream into chunked timestamped files based off the traffic on that live stream.

    For example the application would listen to the IP address/port then start recording when RTP traffic is beings streamed, then stop the recording and save the file when the RTP traffic stops.

    I’ve been trying to find examples for how FFMPEG or Gstreamer could do this but have not found anything concrete. Is this possible with one of these applications ? If so could you provide an example ?