
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (48)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (6494)
-
ffmpeg & error handling
29 septembre 2012, par user1707626i am using ffmpeg to resize image with this command :
ffmpeg -i 0%d.jpg -qmax 1 -vf scale=-1:480 out-0%d.jpg
, and sometimes he return me error :Assertion s->nb_components == 3 failed at /home/kyle/software/ffmpeg/source/ffmp
eg-git/libavcodec/mjpegdec.c:354And i see the box ffmpeg.exe has stop working ... and i need to hit cancel for continue my python script loop.
1) It there something wrong with the original size of the jpg ?
2) If there is no solution how can i ignore the runtime error message and let my python script continu where it was.
Thank you :)
-
Nginx video streaming - ffmpeg convert to flv, but requsted is mp4
18 juin 2012, par abrahabI am converting videos from different sources with ffmpeg to mp4 with libx264 codec.
The following command (simplified) :
ffmpeg -i 1.mp4 -y -f mp4 -vcodec libx264 -crf 28 -threads 2 -strict experimental -acodec aac -ab 56k -ar 44100 -ac 2 temp.mp4
Then, I can not stream the output file (500 Internal Server Error) with nginx mp4-streaming solution (aka http pseudo streaming). My system administrator found, that if rename file to
flv
it stream well, so, seems the output file is notmp4
, butflv
? Why ? How to correctly convert ? Or, please, suggest how to stream video properly ? I think thatmp4
is much better thenflv
... therefore I choose mp4.In other words, the problem is to stream output file like
mp4
.ps i also need to be sure that this video will always work at ipad after convertation. thanks and sorry for my bad english.
EDIT : I found that if convert video with the same string but without
-vcodec libx264
- nginx can serve the output.mp4
file well. where may be the problem ? -
nginx video mp4 streaming - jwplayer seeking
18 juin 2012, par abrahabAs you can see nginx streaming solution works and return different content-length when
flv
requested withstart
parameter :
http://www.hotgirlscompany.com/1.flv?start=0
http://www.hotgirlscompany.com/1.flv?start=300000But the problem that jwplayer v5 can not seek this video to any position. Seems (from http sniffer) player request
?start=0
and then ignore any mouse clicks at loading line, and can not go to position I want).Of course, I added
provider=http
toflashVars
.
You can download the video and see that its converted as H.264/AAC. Then makedmp4box -inter 500 1.flv
. But still can not steam it :(Any suggestions ?
Maybe example how to property reconvert this video with ffmpeg to make it playable ?