Recherche avancée

Médias (91)

Autres articles (68)

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

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7095)

  • Split out extension

    24 juin 2013, par nschonni
    Split out extension
  • Split VFR video into CFR chunks ?

    17 janvier 2021, par Daniel L.

    Is there a good way to split a VFR video into chunks that split whenever the framerate changes ?

    


    I have a video that I want to edit that is VFR but my editor doesn't support VFR. I don't want to set a constant framerate and convert it because that could degrade some sections of the video.

    


    I was thinking that one way working with it would be to take it and split it into chunks that are CFR to work on separately (hopefully they'll be large sections).

    


    I haven't found a good way to do it though, ffmpeg at least doesn't seem to have something built in to let me do it.

    


    An alternative question would be : is there some software that would let me easily scan the video to find the framerates used ? If it's not too crazy, I can convert to a common multiple framerate, edit and then remove the duplicate frames with Avisynth later.

    


  • ffmpeg split into frames

    4 novembre 2011, par bradleyg

    Hey, I want to split a video which is one second long (25fps)into 25 seperate video files. I know I can split it up into jpegs but I need to retain the audio. So when I recompile audio is still there.

    This is what I tried to grab the first frame only (with audio) :

    ffmpeg -i 1.mov -vcodec mjpeg -qscale 1 -an -ss 00:00:00:00 -t 00:00:00:1 frame1.mov

    But it doesn't seem to work. Am I wrong in assuming ffmpeg supports time stamps in this format ? hh:mm:ss:f ?

    Thanks