Recherche avancée

Médias (91)

Autres articles (98)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11348)

  • how i can rotate video for 20 degrees ?

    2 août 2014, par user3447705

    How i can rotate video for 20 degrees ?

    FFMPEG not have option, where i can manual set degree.

    ffmpeg -i video.mp4 -acodec copy -sameq -vf transpose=1 out.mp4

    The various parameter values for "transpose" are :
    0 : rotate by 90 degrees counterclockwise and vertically flip
    1 : rotate by 90 degrees clockwise
    2 : rotate by 90 degrees counterclockwise
    3 : rotate by 90 degrees clockwise and vertically flip

  • How do I render a video from a list of time-stamped images ?

    24 octobre 2016, par piedar

    I have a directory full of images following the pattern <timestamp>.png</timestamp>, where <timestamp></timestamp> represents milliseconds elapsed since the first image. input.txt contains a list of the interesting images :

    file '0.png'
    file '97.png'
    file '178.png'
    file '242.png'
    file '296.png'
    file '363.png'
    ...

    I am using ffmpeg to concatenate these images into a video :

    ffmpeg -r 15 -f concat -i input.txt output.webm

    How do I tell ffmpeg to place each frame at its actual position in time instead of using a constant framerate ?

  • Error while extracting 3 images from mp4 video file

    19 janvier 2014, par kheya

    I am trying to extract 3 images from mp4 video using ffmpeg.exe
    The images are generated just fine but I get some warning(yellow) and error (red) text

    Anyone can help me fix the issue ?

    Thanks

    Warning :

    Incompatible pixel format &#39;yuv420p&#39; for codec &#39;mjpeg&#39;, auto-selecting format &#39;yu
    vj420p&#39;

    Error :

    [image2 @ 02e5fde0] Could not get frame filename number 2 from pattern &#39;C:\bob\
       Challenge\FFMPEG/jadu-1.jpg&#39;
    av_interleaved_write_frame(): Invalid argument
    The system cannot find the drive specified.
    The system cannot find the drive specified.

    My command (in bat file) :

    for %%a in (%1\*.mp4) do (
      ffmpeg -i "%%a" -r 1 -t 1 -ss 1 -s sqcif "%2/%%~na-1.jpg" -r 1 -t 1 -ss 4 -s sqcif "%2/%%~na-2.jpg" -r 1 -t 1 -ss 7 -s sqcif "%2/%%~na-3.jpg"
    )

    Output :

    ffmpeg version 0.8.14, Copyright (c) 2000-2013 the FFmpeg developers
     built on Jul 26 2013 15:57:05 with gcc 4.6.2
     configuration: --prefix=ffmpeg/ --disable-network --disable-debug --disable-ya
    sm
     libavutil    51.  9. 1 / 51.  9. 1
     libavcodec   53.  8. 0 / 53.  8. 0
     libavformat  53.  5. 0 / 53.  5. 0
     libavdevice  53.  1. 1 / 53.  1. 1
     libavfilter   2. 23. 0 /  2. 23. 0
     libswscale    2.  0. 0 /  2.  0. 0

    Seems stream 1 codec frame rate differs from container frame rate: 60000.00 (600
    00/1) -> 29.97 (30000/1001)
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#39;C:\bob\FFMPEG\jadu.mp4
    &#39;:
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-10-18 18:05:17
       title           : Jaadu bhare - YouTube
     Duration: 00:02:27.68, start: 0.000000, bitrate: 605 kb/s
       Stream #0.0(und): Audio: aac, 44100 Hz, stereo, s16, 102 kb/s
       Metadata:
         creation_time   : 2007-10-18 18:05:17
       Stream #0.1(und): Video: h264 (Baseline), yuv420p, 320x240 [PAR 1:1 DAR 4:3]
    , 500 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 60k tbc
       Metadata:
         creation_time   : 2007-10-18 18:05:17
    Incompatible pixel format &#39;yuv420p&#39; for codec &#39;mjpeg&#39;, auto-selecting format &#39;yu
    vj420p&#39;
    [buffer @ 02e4dcc0] w:320 h:240 pixfmt:yuv420p tb:1/1000000 sar:1/1 sws_param:
    [scale @ 003af160] w:320 h:240 fmt:yuv420p -> w:128 h:96 fmt:yuvj420p flags:0x4
    Incompatible pixel format &#39;yuv420p&#39; for codec &#39;mjpeg&#39;, auto-selecting format &#39;yu
    vj420p&#39;
    [buffer @ 03397b20] w:320 h:240 pixfmt:yuv420p tb:1/1000000 sar:1/1 sws_param:
    [scale @ 02f2ffa0] w:320 h:240 fmt:yuv420p -> w:128 h:96 fmt:yuvj420p flags:0x4
    Incompatible pixel format &#39;yuv420p&#39; for codec &#39;mjpeg&#39;, auto-selecting format &#39;yu
    vj420p&#39;
    [buffer @ 033b6380] w:320 h:240 pixfmt:yuv420p tb:1/1000000 sar:1/1 sws_param:
    [scale @ 033b6620] w:320 h:240 fmt:yuv420p -> w:128 h:96 fmt:yuvj420p flags:0x4
    Output #0, image2, to &#39;C:\bob\FFMPEG/jadu-1.jpg&#39;:
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-10-18 18:05:17
       title           : Jaadu bhare - YouTube
       encoder         : Lavf53.5.0
       Stream #0.0(und): Video: mjpeg, yuvj420p, 128x96 [PAR 1:1 DAR 4:3], q=2-31,
    200 kb/s, 90k tbn, 1 tbc
       Metadata:
         creation_time   : 2007-10-18 18:05:17
    Output #1, image2, to &#39;C:\bob\FFMPEG/jadu-2.jpg&#39;:
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-10-18 18:05:17
       title           : Jaadu bhare - YouTube
       encoder         : Lavf53.5.0
       Stream #1.0(und): Video: mjpeg, yuvj420p, 128x96 [PAR 1:1 DAR 4:3], q=2-31,
    200 kb/s, 90k tbn, 1 tbc
       Metadata:
         creation_time   : 2007-10-18 18:05:17
    Output #2, image2, to &#39;C:\bob\FFMPEG/jadu-3.jpg&#39;:
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isomavc1mp42
       creation_time   : 2007-10-18 18:05:17
       title           : Jaadu bhare - YouTube
       encoder         : Lavf53.5.0
       Stream #2.0(und): Video: mjpeg, yuvj420p, 128x96 [PAR 1:1 DAR 4:3], q=2-31,
    200 kb/s, 90k tbn, 1 tbc
       Metadata:
         creation_time   : 2007-10-18 18:05:17
    Stream mapping:
     Stream #0.1 -> #0.0
     Stream #0.1 -> #1.0
     Stream #0.1 -> #2.0
    Press [q] to stop, [?] for help
    [image2 @ 02e5fde0] Could not get frame filename number 2 from pattern &#39;C:\bob\
    Challenge\FFMPEG/jadu-1.jpg&#39;
    av_interleaved_write_frame(): Invalid argument
    The system cannot find the drive specified.
    The system cannot find the drive specified.