Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (62)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8082)

  • sws_scale performance comparison to media players real time resize

    14 juillet 2018, par Andrey Katkov

    While playing 4K video user can resize players window - and result image will be scaled smoothly in run time.

    On the other hand - program written with libav which reads 4k video file frame by frame and scale it down with sws_scale function do it less effective : it took more time then video duration to resize it.

    Why is it so ? Maybe because player fps is less and some frames are skipped - but video still looks smooth ?

  • How to encode and segment at the same time ?

    18 octobre 2011, par lvreiny

    I want to implement HTTP streaming server, which is similar to this (http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/)
    But, instead of segment the video file after it is completely converted by ffmpeg, I want to do encoding and segmenting at the same time (something like if the output stream from the encoder is sent to the segmenter immediately).

    Thanks

    lvreiny

  • How to insert image at the same time as audio over a video using FFmpeg

    7 août 2019, par Mariano Argañaraz

    I have a video, an audio, and an image :
    I would like to overlay the image on the video as the same time as I put the audio over, how would the FFmpeg command be ?
    I’m currently using a command like this to put the audio over video, at a given time.

    ffmpeg -y -i video.mp4 -itsoffset $secondsAt -i audio.mp3 \
    -filter_complex [0:a][1:a]amix=inputs=2[a] -map 0:v -map [a] \
    -c:v copy -c:a aac -strict experimental -b:a 192k -ac 2 -async 1 \
    -shortest -crf 36 -preset ultrafast