Recherche avancée

Médias (91)

Autres articles (29)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7065)

  • openssl : Allow newer TLS versions than TLSv1

    30 octobre 2016, par Mark Thompson
    openssl : Allow newer TLS versions than TLSv1
    

    The use of TLSv1_*_method() disallows newer protocol versions ; instead
    use SSLv23_*_method() and then explicitly disable the deprecated
    protocol versions which should not be supported.

    • [DBH] libavformat/tls_openssl.c
  • reason why encoder and media server is distributed [closed]

    11 mars 2023, par nkee Ya

    I planned to implement Streaming site using Java and have a few questions. If my knowledge is wrong, please correct them.

    


      

    1. flow chart is video - encoder - media server - cdn - video player - client
    2. 


    3. I want to know what each components' (video, encoder, media server, cdn,v ideo player) roles are. (especially media server and video player..)
    4. 


    5. I planned to implement media server and use ffmpeg which encodes video and I think it acts as an encoder in flow chart.
    6. 


    7. why using RTMP between encoder and media server ? Isn't streaming protocol HLS used when the media server sends a video to the user because it's streaming that plays files in real time without the need for viewers to download all the files ? Why is the streaming protocol used to send videos from the encoder to the media server ?
    8. 


    


    Have any data about my title, link please.
I googled data about my title, but I'm confused what each components' roles are.

    


  • Merge mp3 files using FFmpeg on Android

    13 mai 2017, par Ali

    I am trying to merge two mp3 files using this command :

    ffmpeg -i "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3" -c copy /storage/emulated/0/Recordings/concated.mp3

    but get this error :

    "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3": No such file or directory

    Even though the both files exist in the directory. I have written this command according to the documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol

    How do I fix this ? Please help me.