Recherche avancée

Médias (91)

Autres articles (71)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (11066)

  • Can't get FFMPEG to convert Samsung Motion Photos from .jpg to .mp4 [closed]

    27 août 2024, par welbeebee

    I pulled a bunch of Samsung Galaxy S21 Ultra motion photos to my PC (Windows 11) for video editing, but they were in .jpg, and for some reason Microsoft Clipchamp couldn't convert them to video. But, I knew the motion photos were intact, bc Microsoft Photos was showing the MOTION option and playing the videos just fine.
So, I'm in FFMPEG just throwing everything at the wall, but can only get still MP4's out of it, with none of the video.

    


    Here's the breakdown of what I'm looking at for :
ffmpeg -i input.jpg

    


    Input #0, image2, from '20240623_233601.jpg':
  Duration: 00:00:00.04, start: 0.000000, bitrate: 874324 kb/s
  Stream #0:0: Video: mjpeg (Baseline), yuvj420p(pc, bt470bg/unknown/unknown), 2944x2208 [SAR 59:59 DAR 4:3], 25 fps, 25 tbr, 25 tbn


    


    So to get the whole folder converted, I'm trying :
for %i in (*.jpg) do ffmpeg -i "%i" -c:v libx264 -map 0:0 -preset veryslow -crf 18 "%~ni.mp4"

    


    But this just results in a bunch of those still MP4's I mentioned.

    


    I'm assuming the problem starts with that odd duration of 00:00:00.04, with a bitrate of 874324 kb/s, but I'm not sure. I don't understand this mjpeg video format very well at all.

    


    I been trying to work through this with copilot to no success, and so I'm turning to stackoverflow in case anyone can help me out.
Or am I going about this all the wrong way ? Let me know.

    


  • mp4 video loading forever and does not open of Samsung TV

    16 août 2020, par Amira Elsayed Ismail

    I have two mp4 files one is working on Samsung TV and the second one is not working, it keep loading forever

    


    I have checked the codec of both and the are the same , the only change is the bitrate is different, could that be the reason of not being able to play the video on TV

    


    and if yes how to solve t using vlc program or any ffmpeg code that convert it

    


    enter image description here

    


    enter image description here

    


    enter image description here

    


  • Find/extract the frames which are different in two videos

    24 novembre 2022, par Greendrake

    I have two H.264 video files roughly 30GB each, with 256291 frames in each. Most, if not all, frames in the 1st video appear identical to their counterparts in the 2nd video. That said, the video content is seemingly almost (maybe completely) identical.

    


    The raw H.264 streams extracted from the video files are actually supposed to be identical but they are not : one is bigger than the other by about 2MB. So, it seems like there ought to be some differences in the picture somewhere.

    


    I have used the following command to extract a frame each 0.5s from the files and then compared the frames' md5 hashes. All 21356 frame files extracted from the first video exactly match their counterparts from the second video.

    


    for i in {0..21356} ; do ffmpeg -hide_banner -loglevel error -accurate_seek -ss `echo $i*0.5 | bc` -i video.mp4 -frames:v 1 frames/period_down_$i.bmp ; done


    


    So, the odds that the video is anyhow different are low. But not 0% chance as the one or a few different frames could just fall outside of the 0.5s picks that I tried.

    


    Is there any smart way to find/extract the diffing frames only ?

    


    I could extract all frames and compare them but that's not smart at all and would take lots of time / disk space.