Recherche avancée

Médias (91)

Autres articles (71)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

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

  • How to detect the real orientation of a video recorded by mobile with "auto rotate" disabled

    28 octobre 2022, par FlamingMoe

    When you record a video, the rotation metadata has 4 possible values (0, 90, 180 and 270) and it stores how the device was held when starting the recording.

    


    But mobile phones has also a feature to enable or disable "auto rotation" of screen.

    


    It's very typical, nowadays, to have that feature disable, and many people record videos with the phone horizontally, but since the "auto rotation" is disable, the metadata stores like the video was recorded as vertically.

    


    How to handle this ?

    


  • ffmpeg avfoundation (Mac OS X) capture second screen desktop

    1er août 2016, par user1706674

    I am use console ffmpeg, if I capture from first monitor, then all is well

    ./ffmpeg -video_size 640x480 -framerate 30 -f avfoundation -capture_cursor 1 -capture_mouse_clicks 1 -i 1:0 -c:v libx264 -qp 0 -preset ultrafast capture.mp4

    if try capture from the second monitor then process hangs

    ./ffmpeg -video_size 640x480 -framerate 30 -f avfoundation -capture_cursor 1 -capture_mouse_clicks 1 -i 2:0 -c:v libx264 -qp 0 -preset ultrafast capture.mp4

    My device list :

    AVFoundation input device @ 0x7fc74141a0c0] AVFoundation video devices:
    [AVFoundation input device @ 0x7fc74141a0c0] [0] HD-camera FaceTime (integrated)
    [AVFoundation input device @ 0x7fc74141a0c0] [1] Capture screen 0
    [AVFoundation input device @ 0x7fc74141a0c0] [2] Capture screen 1
    [AVFoundation input device @ 0x7fc74141a0c0] AVFoundation audio devices:
    [AVFoundation input device @ 0x7fc74141a0c0] [0] Built-in Input
    [AVFoundation input device @ 0x7fc74141a0c0] [1] Boom2Device

    But if I replace output format from mp4 to mkv then record is well on second monitor too ! How fix this bug ?

  • Using GDIgrab in FFmpeg with dshow Audio produces black screen

    16 mars 2016, par Spreadys

    here is my command :

    ffmpeg -f gdigrab -framerate 25 -offset_x 10 -offset_y 10 -show_region 1 -draw_mouse 1 -video_size 1280x720 -i desktop -f dshow -i audio="Microphone (2- ATR USB microphone)" -r 25 -threads 4 -c:v libx264 -pix_fmt yuv422p -preset superfast -tune fastdecode -x264opts keyint=25:min-keyint=1 -crf 4 -c:a aac -profile:a aac_low -async 25 "C:\Users\david\Desktop\%output%.mp4"

    The gdigrab video works great when it is on its own (no audio). The audio works fine when it is on its own (no video). When I join the two commands to capture both together, as soon as I move a window within my capture area, the area goes black.

    In Windows 7, I used to get around this by stopping the desktop composition service prior to capture, (SC stop uxsms), but this is now not possible in Win10.

    I thought it may be something graphics card related.
    My main monitor is on an Nvidia card, with my second running from the onboard Intel. This is setup for Quicksync H264 playback and encoding with my NLE.

    I know that I could use a dshow screen capture driver such as UScreen but am trying to avoid that as I need the capture area to be specified each time from a simple batch.

    Any help appreciated to solve this black area problem- its driving me crazy !
    David