Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (107)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (18642)

  • libavcodec/exr : simplify reorder_pixels

    5 mai 2017, par Martin Vignali
    libavcodec/exr : simplify reorder_pixels
    

    reorder_pixels is call by rle_uncompress and zip_uncompress
    with size == uncompress_size

    uncompress_size is a multiple of 2 (because exr store data
    in half, float, or uint32)

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/exr.c
  • x264 rate control modes

    19 septembre 2013, par xkfz007

    Recently I am reading the x264 source codes. Mostly, I concern the RC part. And I am confused about the parameters —bitrate and —vbv-maxrate. When bitrate is set, the CBR mode is used in frame level. If you want to start the MB level RC, the parameters bitrate, vbv-maxrate and vbv-bufsize should be set. But I don't know the relationship between bitrate and vbv-maxrate. What is the criterion of the real encoding result when bitrate and vbv-maxrate are both set ?
    And what is the recommended value for bitrate ? Equals to vbv-maxrate ?
    Also what is the recommended value for vbv-bufsize ? Half of vbv-maxrate ?
    Please give me some advice.

  • streaming from generated images using ffmpeg / vlc / live555

    10 octobre 2019, par Pavel

    For the life of me I cannot get this to work correctly.

    The idea is : simple python script that loads an image from a url (different every time) and passes it to ffmpeg, eg :

    python fetch.py | ffmpeg -f image2pipe -framerate 1 -i pipe:.jpg -c:a copy -c:v libx264 -r 5 -b 500000 -s 600x480 ../live555/out.264

    What I really need is to make this work with some sort of rtsp server.
    So far a sort of working approach was to use live555MediaServer that is running on the same server and pretty much streams that out.264 file.

    Why I don’t like this approach :

    a. connecting to rtsp stream using vlc works but it’s very unstable (video stops) and there are not errors or anything, if I click play it resumes.
    debug :
    live555 debug: RTSP track Close, 0 track remaining
    It seems like it just streams whatever the file has at that moment of time and does not do it continuously.

    b. I don’t like the "file" approach. Eg. ffmpeg is creating an out.264 file which grows. Ideally it would simply send the stream to the RTSP server via some protocol.

    c. live555MediaServer just sucks

    It looks like there is a way to run vlc server on my server as well, but I cannot figure out how to make ffmpeg feed the vlc server ?

    Any suggestions ?