Recherche avancée

Médias (91)

Autres articles (73)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12519)

  • movenc : Remove an unnecessary condition when flushing fragments

    18 décembre 2014, par Martin Storsjö
    movenc : Remove an unnecessary condition when flushing fragments
    

    If fragments == 0 it means we haven’t written any moov atom yet.
    If the empty_moov flag is set, we already have written an empty moov
    atom at startup. Thus, the check for empty_moov is redundant.

    This is in preparation for allowing writing the moov atom later,
    even when using the empty moov flag.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c
  • FFMpeg segmentation to output stream

    2 octobre 2019, par Igor Evdokimov

    I’ve a C# project, that is aimed to split an input RTSP stream and to save it on Azure File Storage.
    I’m trying to segment an input RTSP stream into output stream. I don’t want to save any temporary files on a disk and so, I’m trying to redirect ffmpeg’s output. Unfortunately, I haven’t any good idea how to do it.
    Commands like :

    ffmpeg  -rtsp_transport tcp -i rtsp://admin:admin@X.X.X.X:2222/Streaming/Channels/101 -f ssegment -segment_time 30 -strftime 1 -vcodec h264  -update 1  pipe:1
    ffmpeg  -rtsp_transport tcp -i rtsp://admin:admin@X.X.X.X:2222/Streaming/Channels/101 -f ssegment -segment_time 30 -strftime 1 -vcodec h264  -update 1  null -

    doesn’t resolve my problem, because of :

    Output file #0 does not contain any stream

    Does anybody have an idea how to overcome it ?

  • FFMpeg - how to encode a F4M manifest file to mp4

    20 novembre 2015, par Roee

    I’m working on a project, where we want to encode flash videos to mp4 (for example, we want to encode a f4v file), and live-stream them (which means we can’t just download all the f4f files, then encode them to a single mp4 and just then stream it. The encoding and streaming has to be done while downloading the files).

    If the format of the flash video is flv for example, FFMpeg can do what I’ve described without any problem. I just give the address of the flv file to FFMpeg, and it encodes and streams it as mp4.

    But, if the format of the flash video is something more complicated as f4v (which gets downloaded as many f4f files), I don’t have a single url to give to FFMpeg as input - I have many addresses of f4f files. I don’t even know how many f4f files the video has before playing it - it looks like the flash player just fetches the next f4f file when needed.

    I read online that there is a manifest file (its extension is f4m), that "describes" to the flash player which f4f files it should download and play, and what’s their playing-order and everything.

    My question is - if I have the url of this f4m file, what should I do in order to encode all its f4f files to mp4 ?
    I’ve tried to give to FFMpeg just the f4m file as input, but it doesn’t know what to do with it...

    I’ll really appreciate any response that might help, as I’ve been working on this issue for few days now and I still haven’t found any answer...

    Thanks,
    Roee.