Recherche avancée

Médias (91)

Autres articles (61)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (10047)

  • Frame Number Overlay With FFmpeg [closed]

    12 mars 2013, 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.

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

    


  • ffmpeg produce not expected number of frames

    22 mars 2016, par mrgloom

    I’m using this command to count frames in video.

    FRAME_COUNT=`./ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 $VIDEO_NAME`

    and this command for video splitting :

    ffmpeg -i $VIDEO_NAME -qscale:v 1 $DIRNAME$SEPARATOR'image%d.jpg'

    but last command produce much more images then expected for some videos, for example calculated number of frames is 597 and produces number of images > 100,000.

    What can be the case of such behaviour ?