
Recherche avancée
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (12031)
-
matlab 'system'command in linux
30 octobre 2014, par Liu JingyuI 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 ZhangKunon 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 FredI 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 ?