Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (67)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9948)

  • How to put watermak on video with FFMPEG,without resizing the watermark because of video resolution ?

    22 mai 2014, par Shahbaz Younis

    I’m looking for a way that the watermark picture does not get resized,if the video resolution is high or less. Right now I have this problem, if I upload a video like 720p the watermark is really small and when I upload a video that is 240p the watermark is really big. I would just like it to be only one size. Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where I put it ? Here’s the code I’m using right now

    if ($ffmpeg_ver == "old") {
                       $watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
               } else {
                       $watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
               }
  • FFMPEG trim video resulting not moving videos and black video with audio

    13 juin 2023, par Rafliii

    I tried to trim my video based on start and end time with the following code :

    


    ffmpeg -ss 02:06:30.500 -to 02:06:32.417 -i movie.mp4 -c copy output.mp4

    


    The output video is not moving video and some of them are black videos with audio. What should I do ?

    


    enter image description here

    


    What should I do ?

    


  • Detecting frozen frames in video file using ffmpeg or similar

    16 décembre 2015, par jakkolwiek

    I’m trying to find a way to analyze couple of video files (mov) in order to find files with frozen frames or black screens appearing. I know that using simple command with ffmpeg returns the start/stop point and duration of black screens, unfortunately I can’t find any solution for frozen frames. The video files are rather small and definitely not high quality, but I need to distinguish the broken files apart from good ones. The thing is, it has to be to use as a simple shell command or library in order to use it with Java, Python, Ruby or similar. Any advice is much appreciated !