Recherche avancée

Médias (91)

Autres articles (69)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (11574)

  • May I use OpenCV in a customized FFMPEG filter ?

    20 mai 2016, par Codecodeup

    I am new to FFMPEG and OpenCV. I hope to overlay a heatmap video on top of a video. There could be two solutions :
    (1) Make a customized FFMPEG filter. When looping over each frame, calculate the heatmap for that frame and overlay it with the video frame. Here, I need some matrix operations to calculate the heatmap. May I use OpenCV for these operations inside the FFMPEG filter ?
    (2) Generate the heatmap, using OpenCV, as a video and then use FFMPEG to overly the heatmap video on top of the original video.

    Looks like the first one fits the FFMPEG workflow, but I am still not sure which solution is better, or if there are better solutions. Especially, I am not sure if I can use OpenCV inside FFMPEG.

    Thanks.

  • Video composition

    16 avril 2016, par Perry Davies

    I am trying to recover some pictures from an old movie. However when I pause the movie not all of the picture is complete. My question - is there some software or method I can use to take some of the video frames and compress them into a single image that I can then use to print a picture from ?

    Hope someone can help

  • Join two videos with unmatching audio streams in ffmpeg

    1er janvier 2013, par graup

    I already know how to concat multiple files using ffmpeg (e.g. like this).

    However, I have a specific problem. Due to an error while recording, the first video's video stream ends after about 14 minutes, while the audio stream is about 20 minutes long.
    The second video has complete video and audio streams.

    I hope this will make my situation clear :

    File 1:
    V1: vvvvvvvvvvvvvvv________
    A1: aaaaaaaaaaaaaaaaaaaaaaa

    File 2:
    V2: vvvvvvvvvvvv
    A2: aaaaaaaaaaaa

    Result after converting to MPEG-TS, concatting and encoding to mp4:
       vvvvvvvvvvvvvvvvvvvvvvvvvvv________
       aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    Expected:
       vvvvvvvvvvvvvvv________vvvvvvvvvvvv
       aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    Anyone know how to do that ?