
Recherche avancée
Médias (1)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (63)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (6328)
-
Timeout error while running FFmpeg as a process in php
13 août 2021, par Karthikeyan BalusamyI'm trying to create a process for FFmpeg video compression at runtime. In my local system, it runs within 30 seconds. When I tried to run it in the server, it starts throwing a timeout error after 60 seconds. When I manually ran the command in the server, it took around 2 minutes. I came to know that some configuration in
php.ini
needs to be modified. I tried changing the configuration of the process to 300 seconds. Still, the same timeout error is being outputted.


The process "/usr/bin/ffmpeg -i '/var/temp/5e7de5a9de7c2/creme bulee-01-infuse
the cream and milk.mp4' -s 1668x2224 -c:a copy '/var/temp/5e7de5a9de7c2/compre
ssed/temp_creme bulee-01-infuse the cream and milk_1668x2224.mp4'" exceeded th
e timeout of 60 seconds.




In
php.ini
, I have the following configuration :


max_execution_time = 300 
max_input_time = 300




How do I stop my process from timing out ?


-
How to send Ctrl+C to boost::process ?
7 juin 2024, par MikeI launch FFmpeg in boost::process and get data from it every
n
seconds.

If I terminate the app or FFmpeg in the console using Ctrl+C, FFmpeg flushes all data it has to
stdout
.

But, if I terminate
boost::process
using theterminate()
function, I don't get any data flushed. So I need to send Ctrl+C signal to the process before terminating it to get flushed data from FFmpeg.

I tried :


GenerateConsoleCtrlEvent(CTRL_C_EVENT, c.id())



But, it seems to have no effect.


-
PaperClip check existence before process
15 juin 2015, par bobbystouketI’m trying to skip
PaperClip
process if my music has been deleted.Basically when I upload a music, I want to destroy every single piece of this uploaded file if something went wrong. This operation is delayed and done by
ffmpeg
. Another task is delayed to attached picture to my music.Unfortunately,
PaperClip
process (to attach the picture) has already been delayed when I destroy bad musics. This means when the process starts the source doesn’t exist anymore.
This blocks mydelayed_jobs
and I have to destroy it manually.I’m using Delayed_paperclip to create those delayed jobs.
How can I check if the source exists before processing ?