Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (28)

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

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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (4714)

  • how to synchronize multiple rtsp streams using ffmpeg (or another tool ?)

    23 janvier 2015, par user1913115

    i have several RTP/RTSP live streams that i need to capture to individual mp4 files. this is what i’m doing :

    ffmpeg -i rtsp://source1/video \
          -i rtsp://source2/video \
          -i rtsp://source3/video \
          -map 0 -codec copy out1.mp4
          -map 1 -codec copy out2.mp4
          -map 2 -codec copy out3.mp4

    which works fine except when packets/frames are dropped, i end up with 3 files of different lengths. e.g. after an hour of capture, i may have this :

    out1.mp4 - 59m58s

    out2.mp4 - 59m30s

    out3.mp4 - 56m41s

    when looking at ffmpeg output i see this periodically :

    [NULL @ 0x7ff8c3843600] RTP: missed 8 packets
    [NULL @ 0x7ff8c3843600] RTP: missed 570 packets
    [NULL @ 0x7ff8c3843600] SEI type 81 size 672 truncated at 264

    is there a way to synchronize these videos ? i.e. if a packet is dropped on source3 to drop same packets on source1 and source2 ? or repeat last received frame as many times as required on source3 to have videos in sync with each other ?

  • combine two audio files with a command line tool

    29 août 2018, par holographix

    I’ve to merge two (or more) audio files (like a guitar and a drum track) into a single file.
    I’m running over linux CentOS and I’d need a command line tool to do so, because I’ve got to run this as part of a background process, triggered via crontab of a custom bash script.
    I also need to be able to change the pan, volume, trim and start time (i.e I want the guitar track to start after 1.25ms after the drum track so that they can be both in sync with each other).

    My first choice would be ffmpeg, but I was wondering if there could be something more specific, reliable and less fuzzy than ffmpeg.

    thx a ton !
    - k-

  • Identical clips are getting generated using FFMPEG tool on python

    20 août 2018, par Rohan R

    I am trying to trim the video based on the timestamp (different time interval). When I execute the script using different start time, the same identical clips are getting trimmed (generated).

    Please let me know how can the issue be resolved.