Recherche avancée

Médias (91)

Autres articles (75)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (3563)

  • Frame Number Overlay With FFmpeg [closed]

    27 août 2024, par Kobi Versano

    I need to overlay the frame number to each frame of a video file using ffmpeg for windows.

    



    I succeeded in overlaying a timecode stamp with the drawtext filter using this code :

    



    ffmpeg -i video.mov -vcodec r210 -vf "drawtext=fontfile=Arial.ttf: timecode='01\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000099" -y output.mov


    



    However, I need a frame number overlay and not a timecode one. Any help would be appreciated.

    


  • Video capture by FFMPEG with closed captions data

    9 septembre 2019, par MaximVolobuev

    I’m trying to capture TV broadcasting from Avermedia C027 card using FFMPEG :

    ffmpeg -y -re -rtbufsize 500M -video_size 1920x1080 -framerate 29.97 -f dshow -i video="@device_pnp_\\?\pci#ven_1a0a&dev_6202&subsys_620f1461&rev_01#4&3227f04d&0&00d8#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\{ede957b0-eaa5-4bf4-acf3-6e10cb4836c3}":audio="@device_pnp_\\?\pci#ven_1a0a&dev_6202&subsys_620f1461&rev_01#4&3227f04d&0&00d8#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\{ca465100-deb0-4d59-818f-8c477184adf6}" -c:v h264 -c:a aac -f mpegts test.ts

    Video and audio is OK, but captured video does not contain EIA-608 closed captions data. I tried to add [out0+subcc] flag after video device name, but FFMPEG says that device name is incorrect in this case.

    Video data of Avermedia card undoubtly contain closed captions, because another software installed to the computer can capture video with closed captions.

    Is there any flags to tell to FFMPEG that closed captions should be captured with video ?

  • How to display live frame rate on top of video using ffmpeg ? [closed]

    2 juin 2021, par walking lime

    I want to display live frame rate over video using ffmpeg.I am using following command to get the frame number.Is it possible to get the frame rate as well ?.Thanks.

    


    ffmpeg -re -stream_loop -1 -i /dev/video0 -c:v libx264 -preset veryfast -tune zerolatency -profile:v baseline -pix_fmt yuv420p -bf 0 -x264-params keyint=30:scenecut=0 -vf "drawtext=fontfile=/usr/share/fonts/truetype/freefont/FreeMonoBold.ttf: text='%{frame_num}': start_number=1: x=(w-tw)/2: y=h-(2*lh): fontcolor=black: fontsize=20: box=1: boxcolor=white: boxborderw=5"   -an -f mpegts udp://localhost:4000?pkt_size=1316