Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (32)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4563)

  • How to see FFmpeg command MovePY uses ?

    16 novembre 2019, par user319862

    I am trying to figure out why moviepy doesn’t output expected results. How can I log the FFmpeg command that it uses so that I can compare ?

  • What version of FFMPEG should I use on DEBIAN to transcode RTSP to RTMP ?

    20 août 2013, par user300675

    I was using that command :

      ffmpeg -i rtsp://login:password@90.70.42.54:554/axis-media/media.amp -f flv  rtmp://localhost:1935/live/yarek

    WHich worked fine on 1 windows,

    This command gives errors on linux1
    (ffmpeg version 0.8.6-4:0.8.6

    WriteN, RTMP send error 10053 (129 bytes)
    WriteN, RTMP send error 10053 (45 bytes)
    WriteN, RTMP send error 10038 (42 bytes)
    av_interleaved_write_frame(): Operation not permitted

    and gives errors on Linux2 : (ffmpeg version 0.7.15)

    [h264 @ 0x98e2f80] RTP: PT=60: bad cseq c54f expected=b90c
    [h264 @ 0x98e2f80] RTP: PT=60: bad cseq b90c expected=c551
    [h264 @ 0x98e2f80] RTP: PT=60: bad cseq c552 expected=b90f
    [rtsp @ 0x98de5e0] Estimating duration from bitrate, this may be inaccurate

    Seems stream 0 codec frame rate differs from container frame rate: 180000.00 (180000/1) -> 90000.00 (180000/2)
    Input #0, rtsp, from 'rtsp://login:password@90.70.42.54:554/axis-media/media.amp':
     Metadata:
       title           : Media Presentation
     Duration: N/A, start: -4756.582667, bitrate: N/A
       Stream #0.0: Video: h264 (Main), yuvj420p, 1024x768 [PAR 1:1 DAR 4:3], 90k tbr, 90k tbn, 180k tbc

    So I am 100% sure that the command line is GOOD, but FFMPEG is bad.

    My question is : What version of FFMPEG should I use on DEBIAN to transcode RTSP to RTMP ?

    Can someone recommend me a CORRECT version of FFMPEG that works ?

    Regards

  • how to set frame delay when use ffmpeg to convert images to gif

    24 juin 2021, par yang

    I want to convert image sequence to gif and I want each frame to last for a certain amount of time, but I couldn't find an example of how to do this.

    



    I know this basic command works

    



    ffmpeg -y -i %0d_Frame.jpg output.gif

    



    but how can I let each frame stay for 1 second ?