Recherche avancée

Médias (91)

Autres articles (86)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Create animation video or applying different effect on video from set of images [on hold]

    9 janvier 2016, par Mehul Dudhat

    I tried with FFmpeg but it’s not showing any effect with created video.

    I tried below command with FFmpeg lib :

    ffmpeg -f image2 -r 1/5 -i /&lt;<dir path="path">>/img/img%d.jpg -vcodec libx264 /&lt;<dir path="path">>/output_video.mp4
    </dir></dir>

    The image generated video :

    https://flic.kr/p/CWtxhi

    Is there any other library available to add effect or animation on video during the creation from set of images ?

    I would like to give this type of animation or effect :

    https://animoto.com/play/rXBG1fIq9FWN00O7R7wKyQ

  • FFMpeg : how to merge video and audio and tail align video to audio length ?

    28 septembre 2021, par Bobby

    I have a video file and an audio file to merge together. Audio duration is shorter than video. I want to align them at tail and cut off the head part of the video.

    &#xA;

    Graph illustration :

    &#xA;

    [xxxx------] video&#xA;    [------] audio&#xA;    [======] merged&#xA;

    &#xA;

    Where "x" parts of the video is removed.

    &#xA;

    The duration of the video/audio is unknown but the audio duration is guaranteed to be shorter than video. The reason of it being unknown is because I'm generating video dynamically and pipe to FFmpeg, so it is not possible to know the duration beforehand.

    &#xA;

  • Cutting HEVC video results in parts stating with no video (black image) but correct audio for a few seconds

    8 juin 2020, par Oliver

    i have large HEVC video files and want to cut out parts of them. I use ffmpeg for that with the following command :

    &#xA;&#xA;

    ffmpeg -i input.mp4 -ss 01:18:47.040 -c:v copy -c:a copy -to 01:18:42.640 output.mp4&#xA;

    &#xA;&#xA;

    i know that there can be problems when copy is used and no re-encoding, that is why i checked before that the frames specified in the -ss and -to parameters where keyframes (i-frames).

    &#xA;&#xA;

    So iam expecting to get a clean cut at the beginning and at the end. But what i get is 10 seconds of black image with normal audio in the beginning until the video starts. To make this clear : 10 seconds of video are missing in the beginning but the audio is fine.

    &#xA;&#xA;

    Btw : when moving the -ss part before the -i there seem to be no problems with the video (at least in the beginning). I know about the differences of putting -ss before and after the -i, but i also know, that using -ss after the -i should be slower (and was more accurate in the past) but should not make any differences in the final result. That is why I am so irritated.

    &#xA;