Recherche avancée

Médias (91)

Autres articles (13)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3346)

  • The correct way to use FFMPEG in JAVA

    4 octobre 2018, par Fred

    I have not been able to find lots of information of how to use FFMPEG commands in my JAVA code.

    I understand how to execute FFMPEG commands through the terminal, however if I want to use FFMPEG commands in my JAVA code how should I go about it ?

    I saw an example of using Java.lang.Runtime class. But if I do it this way, would that not require the computer using my JAVA application to have FFMPEG installed on their computer ?

    In short I want to be able to create a JAVA program that has FFMPEG methods available without having the need to have FFMPEG installed.
    Is this possible ?

  • a problem with ffmpeg using pulse mode to open audio device blocking [closed]

    21 juin 2024, par ZhangKun

    on linux x86 system, command line terminal,
music on,
"ffmpeg -f pulse -i xxxx(audio dev name,is a loudspeaker) /tmp/xxxx.wav" run perfect ,
"aplay -i /tmp/xxxx.wav" can play Captured speaker sound,

    


    but,
in cpp code,

    


    {
   ...
   AVInputFormat * fmt = av_find_input_format("pluse");
   if(!fmt)
      return -1;
   
   AVFormatContext *ctx = avformat_alloc_context();
   if(!ctx)
     return -1;

   int ret = avformat_open_input(&ctx,"xxxx dev name",fmt,NULL);  //block.......

   ...
}


    


    why ternimal not,code blocking,Does anyone know ?

    


  • matlab 'system'command in linux

    30 octobre 2014, par Liu Jingyu

    I can run my program on terminal. but if I type the same command in matlab like system('myprogram'), the program would cause a runtime error. The program is to use ffmpeg to play a video, and I know ffmpeg (if not well installed) can cause the problem. But now ffmpeg is well installed and configured. Also, PATH in matlab and linux are the same. So I think in no sense this would happen, but why ?