Recherche avancée

Médias (91)

Autres articles (52)

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

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

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

  • Make thumbs from videos with ffmpeg and php [on hold]

    8 novembre 2013, par Milan Milosevic

    Im try extract small thumbs from video every 15 sec.

    Here is what im try now

    ffmpeg -i movie.mp4 -r 1/15 -s 120x90 %03d.jpg

    But have some error from command line

    [mjpeg @ 0x9e695c0] bitrate tolerance too small for bitrate
    [mjpeg @ 0x9da9a60] ff_frame_thread_encoder_init failed
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    Whats wrong here, and how to get thumbs every 15 sec. and save it 0.jpg,1jpg,2jpg,3jpg,4jpg,5jpg...etc..

  • Make thumbs from videos with ffmpeg [closed]

    20 février 2016, par Milan Milosevic

    Im try extract small thumbs from video every 15 sec.

    Here is what im try now

    ffmpeg -i movie.mp4 -r 1/15 -s 120x90 %03d.jpg

    But have some error from command line

    [mjpeg @ 0x9e695c0] bitrate tolerance too small for bitrate
    [mjpeg @ 0x9da9a60] ff_frame_thread_encoder_init failed
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    Whats wrong here, and how to get thumbs every 15 sec. and save it 0.jpg,1jpg,2jpg,3jpg,4jpg,5jpg...etc..

  • Nginx RTMP - restream rtmp or hls with 1h delay

    15 août 2015, par Michał Paduch

    I want to show users with 1h deley my rtmp stream. How to accomplish this task ?
    I think about solution :
    input : rtmp ://stream...
    Record input into small files, e.g such way :

    recorder chunked {
               record all;
               record_interval 15s;
               record_suffix -%Y-%m-%d-%H%M.flv;
               record_path /home/user/capture/chunked;
           }

    Then only how to stream again this small files with hls or rtmp back to end user ?