Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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

  • Record and preview webcamera stream at the same time

    11 juin 2019, par Vlad Popov

    I’m using ffmpeg and Windows 7/10 OS and going to save webcamera stream to file and preview it at the same time (from time to time, not constantly).
    I can solve each of these tasks separately :

    1. Saving webcamera stream to 1-minute files :

    $ffmpeg_exe = "C:\ffmpeg.exe"

    $video_source = "USB Video Device"

    Start-Process $ffmpeg_exe -ArgumentList @("-y -hide_banner -f dshow -rtbufsize 100M -i video=``"$video_source``" -preset ultrafast -strftime 1 -f segment -segment_time 00:01:00 ``"$out_folder\%Y_%m_%d_%H_%M_%S.mp4``"") -Wait -NoNewWindow

    1. Preview webcamera using ffplay :

    $ffplay_exe = "C:\ffplay.exe"

    Start-Process $ffplay_exe -ArgumentList @("-hide_banner -f dshow -i video=``"$video_source``" -preset ultrafast") -Wait -NoNewWindow

    Is there a way to do it using single command ? I think I have to use ffmpeg within named pipes but I don’t understand how to create/operate them. Maybe someone have already working Windows command which will 1) save webcamera video to file 2) also send it to named pipe for another applications like ffplay or VLC ?

    Thanks for your answers,

    —Vlad

  • FFMPEG merge multiple audio into video in specific time [closed]

    19 avril 2024, par Umar

    Right now i have :

    &#xA;

      &#xA;
    • 1 - video (.mp4)
    • &#xA;

    • N - audio with its timestamp start and end (.wav)
    • &#xA;

    &#xA;

    I want to merge those audio to the video based on that time with still preserving the original video audio

    &#xA;

    So that the final illustration will looks like this :

    &#xA;

    audio       ----aud1------aud2------aud3--------aud4---------audn------->&#xA;video&#x2B;audio ------------------------------------------------------------>&#xA;

    &#xA;

    the audio position will be based on the time, i already have this data

    &#xA;

    start=00:00:12.040,end=00:00:16.640 aud1&#xA;start=00:00:16.640,end=00:00:21.520 aud2&#xA;...&#xA;

    &#xA;

    How to achieve this using ffmpeg

    &#xA;

    thankyou

    &#xA;