
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (36)
-
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (4377)
-
file already in use FFmpeg
11 septembre 2018, par boandriyI am running a server that stores video files. When the file is uploaded I run the method below to compress it :
private void compressVideo(String fileName) throws IOException
{
String cmd[] = {"location to my ffmpeg.exe","-y", "-i",
"location to my inputfile"+fileName,"-vcodec","libx264","-crf","20",
"location to my output file"+fileName};
Runtime.getRuntime().exec(cmd);
}It works fine if my output fileName is different from input fileName.
But when I run the program with the same names, FFmpeg clearly starts the process but it is not ended (after that I can’t open the overwritten file, it tells me that file is in use by FFmpeg).
There is no error followed in the console.
I have tried doing the same thing without running the server and it worked.
As I am the beginner, I would like to know if I made any mistakes ?
Any ideas how can I solve this problem ?Thanks in advance !
-
Electron ffmpeg integration
27 avril 2017, par Raider DaveI am in way over my head here. I am normally a coldfusion/javascript/jquery developer but now have taken on a task that assumes I know more than I do.
I am trying to write an application in electron that will allow me to select a group of video files and convert them to mp4 files while also compressing them. The files are football plays and a normal game consists of about 160 plays and 18gb. We need to compress these down to about 4gb. I have used programs like Prism to do this, but the intended users are not technically savvy nor do they all have windows - some have Macs.
I have an electron project that I have started and got the first part to work. I can start the app and select the input files. But I have tried all kinds of different solutions found online to call ffmpeg and pass it the parms to convert a file. Is there an easy way to call ffmpeg with parms and then wait for it to finish before continuing ?
I am on Windows 10 but will also need to run on Apple OS. Please, if you have a simple example of how to do this, I would appreciate it.
Thanks !
Dave -
Live streaming from iphone To wowza server
4 décembre 2013, par user2959377I need to develop an iphone app that streams live video to wowza server. For encoding the captured video in H.264 and to compress it i need to use FFmpeg. I am unable to proceed because of limited content on internet explaining compilation of FFmpeg.
I used https://github.com/lajos/iFrameExtractor to start with compiling of FFmpeg, but i dont understand how to use the generated files in my application. I am using AVFoundation and can successfully generate the video but dont know how to compile the captured video through FFmpeg. Any link that could help in starting with compiling and using ffmpeg in iphone would be of great help.