Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (97)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • checkasm/Makefile : add EXTRALIBS-swresample

    9 février 2018, par Muhammad Faiz
    checkasm/Makefile : add EXTRALIBS-swresample
    

    Should fix https://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225058.html

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] tests/checkasm/Makefile
  • Making a video from arbitrary named files using ffmpeg

    6 février 2018, par moo

    I have image files from a webcam, they are named in the format : 2018-02-06-16-40-05.jpg
    Is it possible to make a video out of these images without having to rename them in a format similar to image%04d.jpg, etc.

  • ffplay subscription to rtmp stream fails on first try

    2 janvier 2018, par ehouse

    I have an Electron application that does some video streaming through ffmpeg. It works fine on Windows, but I am having a small problem with it on Mac. I stream the desktop with ffmpeg, and try to subscribe to the rtmp stream. I know the rtmp stream is live because I can successfully grab a frame from it.

    The problem is, when I subscribe with ffplay, it does not work, the output looks like this :
    2018/01/01 20:57:25:618 [web]     nan    :  0.000 fd=   0 aq=    0KB vq=    0KB sq=    0B f=0/0

    When I subscribe again (while the previous process is still ongoing), it works : 2018/01/01 20:57:25:828 [web]  340.93 M-V:  0.001 fd=   0 aq=    0KB vq=  131KB sq=    0B f=0/0

    The only difference in output to the command line is this :

    Input #0, live_flv, from 'rtmp:{stream-url-here}':=0/0  
    2018/01/01 20:57:15:427 [web]   Metadata:
    2018/01/01 20:57:15:427 [web]     Server          : NGINX RTMP
    (github.com/sergey-dryabzhinsky/nginx-rtmp-module)
    2018/01/01 20:57:15:427 [web]     displayWidth    : 1024
    2018/01/01 20:57:15:428 [web]     displayHeight   : 640
    2018/01/01 20:57:15:429 [web]     fps             : 20
    2018/01/01 20:57:15:429 [web]     profile         :
    2018/01/01 20:57:15:430 [web]     level           :
    2018/01/01 20:57:15:430 [web]   Duration: 00:00:00.00, start:
    316.500000, bitrate: N/A
    2018/01/01 20:57:15:430 [web]     Stream #0:0: Video: h264 (Constrained
    Baseline), yuv420p(progressive), 1024x640, 20 fps, 20 tbr, 1k tbn, 40
    tbc

    I am trying to figure out why it only works on the second time subscribing, and this is the difference, which I assumes signals the it successfully received the streams info, but I am trying to figure out why it only works the second time.

    Thanks !!