Recherche avancée

Médias (91)

Autres articles (37)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (5600)

  • Setting up a video standard (PAL, NTSC) in ffmpeg, ffplay

    5 mars 2015, par grzebyk

    I have a PAL camera and a stk1160 based video grabber, which is correctly recognised as a /dev/videoN under linux. I am able to watch the feed with vlc after setting up the video standard as a PAL (see the image).

    Image 1 - setting up PAL standard in VLC GUI

    For the purpose of my project I am forced to use ffmpeg. In the default configuration ffmpeg seems to use NTSC standard - image is in greyscale and is flickering (see below image). How can I set the PAL video standard in ffmpeg ?

    Image 2 - Feed received with NTSC standard in ffplay or VLC with NTSC format set

  • No Audio when streaming to Youtube from ffmpeg

    11 février 2019, par Sindre Svendby

    So I’m not able to get sound to youtube when streaming with ffmpeg.

    The command I try to run ;

    ffmpeg \
    -f v4l2 \
    -vcodec h264 \
    -video_size 864x480 \
    -r 24 \
    -i /dev/video1 \
    -f alsa \
    -thread_queue_size 1024 \
    -ac 2 \
    -i plughw:CARD=C920,DEV=0 \
    -c:a aac \
    -filter:a "volume=1.5" \
    -b:a 128k \
    -ar 44100 \
    -vcodec copy \
    -b:v 2000k  \
    -r 24 \
    -g 48 \
    -x264opts no-scenecut \
    -bufsize 4096k \
    -maxrate 2048k \
    -f flv \
    rtmp://a.rtmp.youtube.com/live2/STREAM_KODE

    if I switch out the rmtp stream, with a file, like test.flv.
    And then I try to watch this with VLC I do get sound.

    If I check the audio codec in VLC I do see that the codec is aac.
    And as far as I can see from their help pages it is aac that is the correct audio codec to send in.

    I’m not sure how to continue debug this issue, and ideas on this would be great.

  • Use Ffmpeg to re-stream rtsp [closed]

    27 février 2024, par Wissam Elias

    I am trying to re-stream an rtsp connection using this command :

    


    ffmpeg -rtsp_transport tcp -i "rtsp://admin:admin@192.168.1.13:1935" -rtsp_transport tcp -c:v copy -f rtsp rtsp://192.168.1.10:1935


    


    i am sure that this rtsp connection is working : "rtsp ://admin:admin@192.168.1.13:1935".

    


    I have then tried, for testing purposes, using FFplay to watch the stream from localhost as follows :

    


    ffplay rtsp://192.168.1.10:1935


    


    but no it is not working -_-

    


    ffmpeg command result