Recherche avancée

Médias (91)

Autres articles (71)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (7141)

  • FFMPEG output from motion detection is gray

    13 septembre 2019, par Eternal_Dusk

    I have taken footage I recorded and wanted to use FFmpeg to cut out still frames of the file, however, I just get a file of the same size, but it is all grayed out.

    Command Used :

    ffmpeg -i video.mp4 -vf "select=gt(scene\,0.0003),setpts=N/(30*TB)" output.mp4\

    Output :
    enter image description here

    This is gameplay of MTG Arena btw

    When I run this in FFplay, however, it looks normal.

    Still, however, no cuts or removal happen, as it is still the same length video.

    At this point I have two questions.

    1) How do I cut frames with no motion in FFmpeg

    2) Why does this footage appear gray.

    My video player is MPC-HC

  • lavfi/af_anequalizer : convert to query_func2()

    30 août 2024, par Anton Khirnov
    lavfi/af_anequalizer : convert to query_func2()
    

    Also, simplify code and drop redundant calls that also happen implicitly
    in generic code.

    • [DH] libavfilter/af_anequalizer.c
  • Is it possible to adjust the timeout for ffmpeg on SDP ?

    1er avril 2021, par user3474565

    I have rtpdump files that I would like to be able to convert to webm or mp4 on demand and on the fly. To do this, I'm streaming their packets out extremely rapidly and having ffmpeg read them in using an SDP file. The packets come through and are transcoded in a second or two, since the videos are fairly short. But then there is an additional 10-second wait afterward because the ffmpeg network timeout for SDP defaults to 10 seconds ; I'd like to reduce it. Unfortunately, the -timeout and -stimeout options don't seem to be available when I'm using -i with an SDP file (I get -timeout option not found).

    


    I looked around online, and it seems that 6 or 7 years ago people were having similar issues and some people made pull requests into FFmpeg to add this as an option for RSTP and SDP. I know this went through for RSTP because it's in the documentation know ; did anything ever happen with SDP ? Is it possible for me to set this option, or maybe to terminate ffmpeg manually when I know the stream is done ?