Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (16547)

  • FFMPEG RTP Microphone Audio Stream Won't Work Over 4G/LTE

    11 juillet 2021, par Andrew Smith

    I am trying to RTP stream the Mic input of my USB soundcard over 4G to an iphone running VLC, the phone is on the Three UK mobile network. I cannot get any audio at all but it works with no problem if I route it via a VPN, my ffmpeg command is :-

    


    ffmpeg -f dshow -i audio="Microphone (C-Media USB Headphone Set  )" -c:a libmp3lame -f rtp rtp://xxx.xxx.xxx.xxx:1234

    


    I am streaming to the ip of the phone as shown by whatsmyip in a browser, then trying to play the stream on the iphone using rtp ://@:1234

    


    If I switch on my VPN and change the ffmpeg stream-to ip address to my 10.0.0.xxx ip then it works just fine.

    


    Something seems to be blocking RTP when not using the VPN, could it be the 4G network blocking it ?

    


  • configure : Make sure libpostproc can be found if -rpath-link doesn't work.

    22 décembre 2018, par Carl Eugen Hoyos
    configure : Make sure libpostproc can be found if -rpath-link doesn't work.
    

    Solaris ld takes "-rpath-link=libpostproc" as indication to search in "-link=libpostproc".

    • [DH] configure
    • [DH] tools/target_dec_fuzzer.c
  • ffmpeg add subtitle work fine but not in chrom browser

    16 juin 2020, par Harkeemat Bhullar

    My code is :

    



    $video='uploads/video/combined.mp4';$vtt='file/sample.vtt';$rand=rand();

shell_exec('/usr/local/bin/ffmpeg -i '.$video.' -f srt -i  '.$vtt.' -c:v copy -c:a copy -c:s mov_text -metadata:s:s:0 language=eng uploads/video/'.$rand.'.mp4 2>&1');


    



    Works perfectly in Safari but my problem is the subtitle in chrome browser is not working.
Thanks for your help.