Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (79)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7172)

  • Why am I receiving an error about unterminated %{} near '{localtime' when using ffmpeg

    28 juin 2019, par Randy Bailey

    I am using a line of code to try to record a camera and overlay some timestamp data while im at it.

    I have attempted placing a / and an ’ in various locations around the complaint but cant seem to fix the code. The video records fine but there is no timestamp data overlayed.

    ffmpeg -i https://CAMERAURL -vf drawtext=fontfile=/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf:text='%{localtime:%T}':fontcolor=white@0.8:x=7:y=700 -vcodec libx264 -bsf:a aac_adtstoasc /home/test/StreamDriveway_$now.mp4

    Ideally the code should record with no issues. This is a screenshot of whats going in in terminal https://i.imgur.com/mnFmNtd.png

  • FFMpeg - Get I-Frame closest to interval

    3 avril 2017, par Thomas

    Using ffmpeg, I want to extract frames at regular inverval.

    I would like to get the closest I-frame to the frame matching each interval.

    Since the decoder will need to find that I-frame anyways to decode the frame at the interval, is it possible to extract it instead ?

    There is an old similar question : Select keyframe closest to a particular instant with FFMPEG
    but it doesn’t really come with an answer.

    One option I can think of would be to parse the movie with ffprobe, extract the I-frame locations and then build a list, but I’m hoping to find a single pass solution since that operation needs to be performed internally anyways.

  • Generate Multiple Thumbnails from Multiple Videos (with FFmpeg)

    30 juin 2020, par netsonicyxf

    I have multiple videos in different locations, something like :
D :\Folder 1\001.ts
E :\Folder 2\abc.avi
F :\Foder X\视频.mp4 (some videos name are in non-English languages)

    


    And I already have a filelist.txt with these file path in it

    


    


    file 'D :\Folder 1\001.ts'

    


    


    


    file 'E :\Folder 2\abc.avi'

    


    


    


    file 'F :\Foder X\视频.mp4'

    


    


    For each video, I want to generate 3 images, starting from 00:00:10, then next image every 10 sec.
The name of the image should be the name of the video + number staring from 1, something like
001_1.jpg, 001_2.jpg, 001_3.jpg
abc_1.jpg, abc_2.jpg, abc_3.jpg
视频_1.jpg, 视频_2.jpg, 视频_3.jpg

    


    how to do it in Windows 10 ?