Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (74)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5704)

  • choosing outbound IP (eth0 or eth1) in FFMPEG

    4 septembre 2018, par Ba Ta

    I have 2 IP addresses on my server.

    $curl --interface eth0 ifconfig.co      
    111.111.111.111

    $curl --interface eth0:0 ifconfig.co      
    222.222.222.222

    So via curl I can switch via interfaces so my IP address changes when I visit any url based on eth IP

    How can I use same thing via ffmpeg ?

    For example, if want to access this video via ffmpeg (it uses 111.111.111.111 to access it)

    ffmpeg -i 123.com/video.mp4

    how can I access same video from my second IP 222.222.222.222 ?

    Is there any command like this, perhaps ?

    ffmpeg --interface eth0:0  -i 123.com/video.mp4
  • SRT protocol not found - Raspbery Pi 4 via ffmpeg

    12 août 2021, par Tim Martin

    We tried to stream from a rasp Pi 4 via SRT, but we got a error : "protocol not found". Our command line is :

    


    ffplay srt://127.0.0.1:9500?mode=listener&latency=20000


    


    We tried the following guides :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
how to compile ffmpeg with enabling libsrt
https://www.undergroundnews.dk/index.php/item/107-rtmp-eller-srt-streaming

    


    Those guides worked so far and compiled but we still got the error message.

    


    Do you have any ideas how to get the srt protocol working on a pi via ffmpeg ?

    


  • FFmpeg with multiple output streams

    22 novembre 2018, par William Blake

    I am using ffmpeg to combine an rtsp stream with an audio stream from a usb mic. I would like to stream the combined audio and and video to an RTMP stream and just the audio to an icecast stream simultaneously. I have them working separately but am having difficulty finding the magic combination using the -f tee parameter. It seems like that would be the best way. This was the reference I was trying to use : https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    Here are the separate commands :

    ffmpeg -rtsp_transport tcp -use_wallclock_as_timestamps 1 -thread_queue_size 1024  \
    -i "rtsp://RTSP-SERVER-ADDRESS" \
    -f alsa -thread_queue_size 1024 -ac 1 -itsoffset 00:00:01.2 -i hw:1,0 \
    -vcodec copy -acodec mp3 -ar 44100 -ab 32k -map 0:v -map 1:a -bufsize 12000k \
    -f flv 'RTMP-SERVER-ADDRESS'

    ffmpeg -ac 1 -f alsa -i hw:1,0 -acodec mp3 -ab 32k -ac 1 -content_type audio/mpeg -f mp3 icecast://ICECAST-ADDRESS

    However my attempts to combine them have been futile. Any thoughts ?