Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (87)

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

  • Is there a way to save a matplotlib animation as a video (with ffmpeg) so that the last frame is held for N seconds ?

    2 décembre 2020, par janluke

    I'm using FFMpegWriter to save a matplotlib animation as a video. I'd like to hold the last frame for some seconds at the end of the video.

    


    As a workaround, one could modify the animation itself by repeating the last frame for a number of extra steps. This number of steps can be computed as a function of the desired "hold duration" and the interval/fps of the animation.

    


    Nonetheless, I'd like to know if there's a cleaner way to do the same without artificially modifying the animation itself and using instead some extra arguments for the writer (which uses ffmpeg in my case). Unfortunately I don't know much of ffmpeg so I'd like to have some help.

    


    Thank you.

    


  • avcodec/h264 : create user data unregistered SEI side data for H.264

    11 juin 2020, par Limin Wang
    avcodec/h264 : create user data unregistered SEI side data for H.264
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/h264_sei.c
    • [DH] libavcodec/h264_sei.h
    • [DH] libavcodec/h264_slice.c
    • [DH] tests/ref/fate/mov-zombie
  • I want to get the data of the MPEG2ts data stream

    26 juin 2020, par 夏目たかし

    I want to get the data of the MPEG2ts data stream using FFMPEG.

    &#xA;

    Delivery side :

    &#xA;

    ffmpeg -re -i hoge.ts -map 0 -c copy -f mpegts udp://127.0.0.1:5004&#xA;

    &#xA;

    Receiver :

    &#xA;

    ffmpeg -i udp://127.0.0.1:5004 -map 0:1 -codec copy -f data stream.txt&#xA;

    &#xA;

    I started two command prompts and both were running on one PC.

    &#xA;

    disp Delivery side message :

    &#xA;

    Input #0, mpegts, from &#x27;E:/Day_Flight.mpg&#x27;:&#xA;  Duration: 00:03:14.88, start: 10.000000, bitrate: 4187 kb/s&#xA;  Program 1&#xA;    Stream #0:0[0x1e1]: Video: h264 (Main) ([27][0][0][0] / 0x001B), &#xA;yuv420p(progressive), 1280x720, 60 fps, 60 tbr, 90k tbn, 180k tbc&#xA;    Stream #0:1[0x1f1]: Data: klv (KLVA / 0x41564C4B)&#xA;Output #0, mpegts, to &#x27;udp://127.0.0.1:5004&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.47.100&#xA;    Stream #0:0: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720, q=2-31, 60 fps, 60 tbr, 90k tbn, 90k tbc&#xA;    Stream #0:1: Data: klv (KLVA / 0x41564C4B)&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (copy)&#xA;  Stream #0:1 -> #0:1 (copy)&#xA;

    &#xA;

    disp Receiver message :

    &#xA;

    Input #0, mpegts, from &#x27;udp://127.0.0.1:5004&#x27;:&#xA;  Duration: N/A, start: 1.400000, bitrate: N/A&#xA;  Program 1&#xA;    Metadata:&#xA;      service_name    : Service01&#xA;      service_provider: FFmpeg&#xA;    Stream #0:0[0x100]: Video: h264 (Main) ([27][0][0][0] / 0x001B), &#xA;yuv420p(progressive), 1280x720, 60 fps, 60 tbr, 90k tbn, 180k tbc&#xA;    Stream #0:1[0x101]: Data: klv (KLVA / 0x41564C4B)&#xA;Output #0, data, to &#x27;stream.txt&#x27;:&#xA;  Metadata:&#xA;    encoder         : Lavf58.47.100&#xA;    Stream #0:0: Data: klv (KLVA / 0x41564C4B)&#xA;Stream mapping:&#xA;  Stream #0:1 -> #0:0 (copy)&#xA;

    &#xA;

    However, the contents of steram.txt are empty.&#xA;Please give me some advice.

    &#xA;