Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (97)

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

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

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (6579)

  • mov : do not set avg_frame_rate in the demuxer

    16 janvier 2014, par Justin Ruggles
    mov : do not set avg_frame_rate in the demuxer
    

    The track duration is often not reliable or is not the duration
    represented by the number of frames. In those cases, avg_frame_rate
    was reported incorrectly. Removing this code falls back to the
    default calculation in avformat_find_stream_info().

    This is a partial revert of commit c3aeaa540.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • How to find a "safe" point for -SS using FFMPEG to avoid breaking A/V sync ?

    16 juillet 2019, par user3144514

    I need to find a way to cut video using -SS without breaking the audio/video sync.

    Once in a while it works perfectly fine, but most of the time the audio falls slightly out of synch. Clearly there is something akin to a keyframe for audio, but I do not know how to find them.

    The problem happens when using -SS in conjunction with Any specification for a codec, including -c copy.

    For my purposes, I can’t lose quality so those are necessary.

    ffmpeg -i src.mp4 -ss 1:00 -t 30 -c copy result.mp4

    tends to break the sync.

    ffmpeg -i src.mpr -ss 1:00 -t 30 result.mp4

    produces matching a/v but with significant quality loss from using the default compressions.

    I need a way to find the times at which a cut will result in matching a/v.

  • Can ffmpeg periodically report statistics on a real-time audio stream (rather than file) ?

    19 janvier 2016, par Caius Jard

    I currently use ffmpeg to capture desktop screen and audio that the computer speakers are playing, something like a screencast. ffmpeg is started by an app that captures its console output, so I can have that app read the output and look for info

    I’d like to know if there are a set of switches I can supply to ffmpeg whereby it will periodically output some audio statistics that will directly report, or allow me to infer, that the audio stream has gone silent ?

    I see some audio statistics switches/filters but the help docs for these seem to imply they will collect their stats over the processing of an entire stream and then report them at the end.. I’d prefer something like "the average audio volume over the past 5 seconds" reported every 5 seconds. I could even deduce from the audio bitrate of the encoder I think, if it’s VBR and the rate consistently falls because it’s encoding nothing