Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (83)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (6476)

  • FFMPEG show audio frequency waves with border

    13 juillet 2020, par Nikhil Solanki

    I am trying to generate sine waves or audio frequency like this using this command :

    


    ffmpeg -i combine2.mp4 -i image1.png -i song.mp3 -t 20 -filter_complex "[0]split=2[color][alpha]; [color]crop=iw/2:ih:0:0[color]; [alpha]crop=iw/2:ih:iw/2:ih[alpha]; [color][alpha]alphamerge[v1];
[1]scale=540:960, setsar=1[v2];
[2]showfreqs=s=540x100:mode=line:ascale=sqrt:colors=white|red[v3];
[v2][v3] overlay=main_w-overlay_w:main_h-overlay_h-10[v4];
[v4][v1] overlay=1" output_video2.mp4 -y


    


    This command shows frequency of audio with white colour only and also its not smooth as above image. So, how can I generate waves like above image smooth and bordered ?

    


    Output video :
screenshot

    


  • Use ffmpeg to show a webcam live stream in a browser

    20 juillet 2020, par Toast

    I have a webcam that is connected to a server and I'd like to view a live stream of it in a web browser.

    


    I'd like to include a video tag like this :

    


    <video></video>&#xA;

    &#xA;

    What is an ffmpeg command that will send a video stream to browser clients ?&#xA;I managed to record a video to disk with this command :

    &#xA;

    ffmpeg -f v4l2 -i /dev/video0 output.mkv&#xA;

    &#xA;

    I'm not sure if rtsp and ffmpeg are a good choice and I'm open for alternative suggestions.&#xA;I'm looking for a solution that is simple to setup and demo. Scalability and support for older browsers don't matter and audio isn't needed. I'd prefer a solution that sends compressed video instead of individual images (MJPG).

    &#xA;

  • Crop layout for Videos using touch for a Video Editor like Video Show or Filmora Go in android studio [closed]

    26 août 2020, par Rayhan Khan

    I am new to the android studio (Java) and video editing application. I am developing a video editor in android studio with FFMpeg Library.

    &#xA;

    I want to create a crop layout with a rectangle layer on top of it to measure the details like :

    &#xA;

    &#xA;&#xA;crop video width : 900&#xA;crop video height : 500&#xA;left distance (x value) : 190&#xA;top distance (y value) : 110&#xA;&#xA;                                    1280&#xA;****************************************************************************&#xA;*FULL VIDEO                           |                                    *&#xA;*                                    110                                   *&#xA;*                                     |                                    *&#xA;*            **************************************************            *&#xA;*            *                       900                      *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*----190-----*                     CONTENT                500 *----190-----* 720&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            **************************************************            *&#xA;*                                     |                                    *&#xA;*                                    110                                   *&#xA;*                                     |                                    *&#xA;****************************************************************************&#xA;

    &#xA;

    Please help. Thank you.

    &#xA;

    Screenshot 1 :

    &#xA;

    Image 1

    &#xA;

    Screenshot 2 :

    &#xA;

    Image 2

    &#xA;