Recherche avancée

Médias (91)

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avfilter/vf_codecview : Fix undefined left shifts of negative numbers

    26 mars 2021, par Andreas Rheinhardt
    avfilter/vf_codecview : Fix undefined left shifts of negative numbers
    

    Affected the filter-codecview-mvs FATE-test.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_codecview.c
  • How to get the frame numbers that are dropped when changing the frame rate using ffmpeg

    9 mars 2021, par user42

    I have a video that plays at 30fps. I changed the frame rate to 20fps by using the command&#xA;ffmpeg -i lamp02_20210212_060804-compressed.mp4 -filter:v fps=20 xx.mp4. But I want to get the frame numbers of the dropped frames. I saw here Which frame does ffmpeg get when reducing the frame rate that you can get the frame but I require only the frame number. Is it possible to do this and if yes, how ? Any pointers in the right direction will be helpful !

    &#xA;

  • ffmpeg : `select` filter output frame numbers are off

    28 juin 2020, par kindoflike

    I want to extract certain frames from video, but using this command

    &#xA;

    ffmpeg -i "video-a.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "a_%06d.jpg"&#xA;ffmpeg -i "video-b.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "b_%06d.jpg"&#xA;

    &#xA;

    it seems I'm getting inconsistent results. for different videos I get differently named files :

    &#xA;

    a_000103.jpg&#xA;b_000101.jpg&#xA;

    &#xA;

    why is that ?

    &#xA;