Recherche avancée

Médias (91)

Autres articles (96)

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

  • FFMPEG no metadata

    1er décembre 2014, par user2601259

    I am trying to dump all the important info using ffmpeg.exe -i "1.mp4" -f ffmetadata metadata.txt yet all I get is

    ;FFMETADATA1
    major_brand=isom
    minor_version=1
    compatible_brands=isom

    Official documentation gives no clues at all

  • FFMpeg - Video conversion - .OGG to .MP4

    21 septembre 2018, par Hue Man

    After scouring the net, I can’t find anyone else trying to do this :
    Convert an OGG video format to MP4 video (usualy people are doing this the other way round).
    I have FFMpeg working just fine converting WEBM to MP4 but it just doesn’t seem to like OGG files.
    The official FFMpeg documentation says that it can both Encode AND Decode OGG files but for some reason it isn’t.
    Any ideas ?

  • Can I keep a persistent RTP connection in Python3 which forwards incoming mpegts segment files ?

    20 novembre 2024, par Eric Liang

    I've been experimenting with ways to implement an live-streaming HTTP server in Python 3.13 (GIL-disabled) which gradually receives .ts segment files every 1 second in order through PUT requests, saves them temporarily and locally, and delivers the segment files in the same order to a destination which accepts .ts segment files, necessarily through a single persistent connection to the destination.

    


    I have started trying it out with RTP as the protocol, but I've been struggling to keep the connection alive with ffmpeg as I seem to only be able to send 1 segment at a time (which requires a connection restart every time), or send all at once through concat demuxer. I've also experimented with the input to ffmpeg as a pipe, but that also seems to close immediately upon flushing the pipe with new input once. Other specs include not needing to re-encode so using the option -c copy is fine, the connection should persist even if idle, and I cannot use HLS push to the destination.

    


    Is there a way to do this ? (Lastly, because it's GIL-disabled, I also want to leverage that feature to minimize latency.)