Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (99)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8887)

  • Not able to play mp4 video on Chrome Browser

    15 juin 2016, par Bhupinder Rajput

    I have download a sample 5Mb mp4 video from http://www.sample-videos.com/ . I am not able to play video on chrome browser. I am using simple html5 video tag

    But When I upload same video on facebook it is playing fine on chrome browser

    What I’ve tried to do is :

    <video width="560" height="340" controls="controls"> <source src="../Videos/5 Taara_HD.mp4" type="video/mp4"></source></video>
  • How can you get a webm file without headers to play video and audio ?

    31 août 2023, par John

    Right now I have webm files that are missing the header information so they don't play. How can I fix them so that they play ? My only hack is to get a small webm file with header information and prepend the file, then encode to mp4 and mp3.

    &#xA;

    ffmpeg -i input.webm output.mp4&#xA;[matroska,webm @ 0x13481be00] Format matroska,webm detected only with low score of 1, misdetection possible!&#xA;[matroska,webm @ 0x13481be00] EBML header parsing failed&#xA;kyle.webm: Invalid data found when processing input&#xA;

    &#xA;

    Example file : https://drive.google.com/file/d/1j21wxHyQimMorWU99MJx—4YhgSimkp7/view?usp=share_link

    &#xA;

  • ffmpeg play RTSP stream while recording

    18 décembre 2018, par Emiliano Spada

    I successfully record to a file a RTSP stream using ffmpeg with the following command :

    ffmpeg -i "rtsp://1.1.1.1:554/user=admin&amp;password=admin&amp;channel=1&amp;stream=1" -acodec copy -vcodec copy -movflags frag_keyframe+empty_moov -y http://www.example.com/rec/1.mp4

    now I need to play video while ffmpeg is still writing to file. Even changing file format, is it possible ?