Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (73)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11498)

  • FFMPEG - Getting consistent accurate video time segments

    10 juin 2020, par rossmcm

    I'm processing a large number of videos that need to be time-synchronized to match an audio track (it's a "virtual choir"-type project). I have tried several variations based on the contents of this post, but I get a variability of some seconds on the actual output files. The resulting segment length is variable, and the point in the input video that the output video begins is not at all accurate (I was expecting a +-1 frame error).

    



    Here's my attempt :

    



    :: Syntax:  GetSegment.bat <input file="file" /> <starting time="time" in="in" ms="ms"> <duration in="in" ms="ms">&#xA;:: Example: GetSegment.bat vid.mp4 10000 50000&#xA;::          would produce vid-keyed.mp4 and vid-segment.mp4&#xA;&#xA;@set "_VideoIn=%~1"&#xA;@set "_VideoOutKeyed=%~dpn1-keyed%~x1"&#xA;@set "_VideoOutSegment=%~dpn1-segment%~x1"&#xA;@set "_VideoStartms=%~2"&#xA;@set "_VideoLengthms=%~3"&#xA;@set /a _VideoEndms= %_VideoStartms% &#x2B; %_VideoLengthms%&#xA;ffmpeg -y -i "%_VideoIn%" -force_key_frames %_VideoStartms%ms,%_VideoEndms%ms "%_VideoOutKeyed%"&#xA;ffmpeg -y -ss  %_VideoStartms%ms -i "%_VideoOutKeyed%" -t %_VideoEndms%ms  -codec copy "%_VideoOutSegment%"  &#xA;@exit /b %errorlevel%&#xA;</duration></starting>

    &#xA;

  • Simultaneous Recording and Real-Time Display Using ffmpeg with DeckLink

    9 décembre 2023, par ark1974

    I am currently working with a DeckLink Duo card, specifically utilizing port 2. My objective is to use FFmpeg to ingest RAW HD SDI, save it as an MP4 file, and concurrently display the incoming SDI video on the computer screen in real-time.

    &#xA;

    I have experimented with various FFmpeg command lines, combining decklink and sdl options, to achieve this dual functionality :

    &#xA;

    ffmpeg -f decklink -i &#x27;DeckLink Duo@2&#x27; -c:v libx264 -preset ultrafast -tune zerolatency -f sdl "My Screen"&#xA;

    &#xA;

    However, I am encountering challenges in achieving both recording and real-time display simultaneously.

    &#xA;

    I would appreciate any insights, suggestions, or alternative approaches to enable the concurrent recording and display of SDI video using DeckLink with ffmpeg.

    &#xA;

  • Create slideshow video from PNG images - each in its own time position [closed]

    16 août 2023, par Paul

    I have several hundreds of PNG screenshots.

    &#xA;

    Each screenshot file has following name format : yyyymmdd_hhmmss.png

    &#xA;

    Time differences between these screenshots are irregular.

    &#xA;

    How could I automatically create a slideshow video taking the first file as the point zero and maintaining other pictures' exact timings relative to the first one ?

    &#xA;

    Can FFMPEG do this ? Which contents may have a batch file then ?

    &#xA;