Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (106)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (9189)

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

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

    


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