
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (98)
-
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 (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa 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.
Sur d’autres sites (9800)
-
task scheduler windows wampserver [closed]
6 mai 2013, par user2321982well I've been researching task scheduler, I found the cron to linux, I wonder if it has any windows.
I want to run a script in php every 15 seconds, which is the case in video conversion, and if I was to convert the video to wait over, eg a row, 5 conversions maximum
The script uses a function videoscreen up and calls the command prompt to convert. -
Piping stdout on windows to docker container running linux
13 avril 2015, par kolpaxI need to pipe the output of a program that only runs on Windows, to another program that only runs on Linux. (The programs are very similar to FFMPEG in functionality so for testing I’m piping FFMPEG stdout on Windows to FFMPEG stdin on Linux.)
I am using Docker to run a Linux container on Windows. Docker supports piping data from the host to the Docker container like this :
ffmpeg -i <input /> -c:a copy -v:a copy -f mpegts - | docker run ffmpeg-container -f mpegts -i - -c:a copy -c:v copy <output>
</output>But Docker on Windows runs in a virtual machine and doesn’t have a native client, which means I can’t pipe directly to the container. So far I haven’t been able to find any examples or discussions about piping data through the virtual machine on Windows.
I have tried alternative solutions like using
netcat
for piping but it has a much too slow throughput :Windows :
ffmpeg -i <input /> -c:a copy -v:a copy -f mpegts - | ncat <ip address="address"> <port>
</port></ip>Linux :
nc -l <ip address="address"> <port> | ffmpeg -f mpegts -i - -c:a copy -c:v copy <output>
</output></port></ip>Transcoding purely in Windows yields about 100 FPS, while the netcat solution runs at 0.1 FPS. I am hoping that piping directly will give a better result.
Other solutions I’ve tried involve streaming the data from FFMPEG to FFMPEG using UDP - just to have the output come out of stdout, but the data was corrupted during the transfer. I suspect the problem was in the packets arriving out of order.
Any solutions similar to these will be greatly appreciated. The content is video data so solutions that uses FFMPEG to get the data across are acceptable.
-
ffmpeg does not get installed on windows 32 bit
13 octobre 2016, par SimerI have installed ffmpeg on windows 32 bit and I got following error when I try executing ffmpeg.exe therefore it is not installed and neither shows up in my localhost :
the procedure entry point could not be located in the dynamic link
library kernel32.dllWhere as it get installed on 64 bit easily.
I am downloading ffmpeg from -zeranoe. I have tried with static and shared builds.