Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (78)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (9866)

  • avformat/utils : function to get the formatted ntp time

    7 mai 2018, par Vishwanath Dixit
    avformat/utils : function to get the formatted ntp time
    

    This utility function creates 64-bit NTP time format as per the RFC
    5905.
    A simple explaination of 64-bit NTP time format is here
    http://www.beaglesoft.com/Manual/page53.htm

    • [DH] libavformat/internal.h
    • [DH] libavformat/utils.c
  • 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;

  • 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