Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5702)

  • How to make ffmpeg include the video date in the filename of screen captures ?

    20 avril 2019, par L J

    I’m using ffmpeg to take screen captures every 2 seconds from a series of videos. My script so far (which works) is this :

    "c:\program files\ffmpeg\bin\ffmpeg.exe" -i %1 -vf fps=fps=1.0/2.0 -qscale:v 2 "%~n1 - %%05d.jpg"
    pause

    I’d also like the image filenames to include the following details :

    1. Date and time of the original video
    2. Time in the video of the captured frame

    Are either of these possible ? If so, I would appreciate if answers could be given as an exact script, since I know very little about ffmpeg scripting and likely wouldn’t be able to follow instructions.

  • Revision 7eef48a76c : Added support for Screen Video V2, and On2 VP6 with alpha channel. Fixed a compi

    20 septembre 2007, par Marc Noirot

    Changed Paths :
     Modify /flv.h


     Modify /flvdump.c


     Modify /flvmeta.c



    Added support for Screen Video V2, and On2 VP6 with alpha channel.
    Fixed a compilation issue on MacOSX because of a misplaced minus sign.

  • Artifacts in screen captures from h.264 video using python-ffvideo

    8 juin 2015, par ajt

    I am using a python module called python-ffvieo to capture video stills from mkv files that are h.264 encoded. When I perform my screen captures the image files are heavily pixelated and contain many artifacts.

    I have converted one of the mkv files to a flv file and am able to get screen captures from it with no artifacts or pixilation. I am wondering if this is a codec issue or something similar, but I am not sure how even to go about troubleshooting it.

    Here is the information from ffmpeg on the mkv file that I am trying to get the image captures from :

    Input #0, matroska,webm, from 'mm.mkv':
     Metadata:
       encoder         : libebml v1.3.0 + libmatroska v1.4.1
       creation_time   : 2014-10-13 23:55:52
     Duration: 00:48:03.71, start: 0.000000, bitrate: 1370 kb/s
       Stream #0:0: Video: h264 (High), yuv420p(tv), 1280x720 [SAR 1:1 DAR 16:9], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
       Stream #0:1: Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s (default)

    And here is an image sample of the pixelation that I am talking about :

    enter image description here

    I know that this isn’t much to go off of and that the python module that I am using is kind of old, but I could really use some help.
    Are these types of artifacts common when there is an encoding issue ? Can anyone tell me what I should be looking into to troubleshoot this ? I appreciate any and all help.