Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (66)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (11019)

  • How to the use vf_drawtext.c in my program

    6 mars 2012, par ajaxhe

    Now, I want to add the system datetime information in per video frame, then store as a .mp4 file. I have known vf_drawtext.c can finish this task, but any examples to introduce the usage of APIs in drawtext.c ?

    thanks !

  • Receiving and Manipulating RTSP stream using FFMPEG library in Java Application

    14 janvier 2015, par Bilal Ahmed Yaseen

    Hope you all be fine and doing great.

    I am currently working on a Java Web Application. I am getting Streaming video using RTSP URL. This URL is like :

    rtsp://---.---.---./6ca714ae28e52f31

    I have been able to capture video, diplay/listen it and store it in .mp4 file using FFMPEG with the following command :

    fmpeg -i rtsp://username:password@---.---.---.---/6ca714ae28e52f31 -f mov e:/bay.mov (with authentication)

    Now, I want to achieve the same in my Java application using ffmped library. I am sure if all this possible through commands then It will also be possible using its library. But unfortunately couldn’t get any working useful material regarding this on web.

    So, I simply want to ask that :

    1.  How can I fetch Streams using this RTSP URL in my Java Application with FFMPEG library
    2.  How can I Manipulate this fetched streaming such as start, stop, end etc.
    3.  How can I store this streaming in media file in playable form in any specified format.

    I have found a FFMPEG’s Java Rapper JJMPEG. Now I have two options either to issue FFMPEG command to CMD using Java Application or use JJMPEG library directly. Don’t know which one will be better choice.

    Thanks for your time and considerations.

  • FFmpeg- waveform from audio with transparent background

    7 décembre 2020, par Lluis Semper

    If I use this command

    


    ffmpeg -y -i <mp3> -filter_complex "[0:a]aformat=channel_layouts=mono,showwavespic=s=375x244:colors=#ffffff" -vframes 1 test.png 2>&amp;1&#xA;</mp3>

    &#xA;

    I get the output that I wanted. My only problem is that I do not want to store to disk and want to get a buffer to store as an image in S3.

    &#xA;

    To do that I use this command :

    &#xA;

    ffmpeg -y -i <mp3> -filter_complex "[0:a]aformat=channel_layouts=mono,showwavespic=s=375x244:colors=#ffffff" -vframes 1 -f mjpeg -&#xA;</mp3>

    &#xA;

    In which a get a buffer of the waveform on

    &#xA;

    runner.stdout.on("data", (data) => console.log(data));&#xA;

    &#xA;

    The only problem is that from that image the Background is black.

    &#xA;

    My question is, how can achieve a transparent waveform without saving it to disk ?

    &#xA;

    I do not want to use any library.

    &#xA;