
Recherche avancée
Autres articles (46)
-
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 (...) -
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 (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (4723)
-
ffmpeg deocde without producing output file
2 décembre 2013, par Xin HeI want to use ffmpeg to decode a h264 file.
Since I just want to measure the decoding time, the output file creation will spend a lot of time and time measurement will be not so accurate.
So could anyone help to solve this problem ?
I use "ffmpeg -i blue_sky.h264 output.yuv "to decode.
Thanks in advance !
-
Extract audio stream of a .ts file onto a different format
7 juin 2019, par SkyleftI have a .ts audio file and I want to convert it to a .wav file without losing quality.
This is what I have tried :
ffmpeg -i audio.ts -vn -acodec copy audio.wav
This does return a .wav file, but I’m not sure if what I’m doing is optimal or if there’s anything I can do to end up with a file of better quality. Unfortunately there are many formats such as .aac that I can’t work with.
Lastly, although this returns a .wav file, it is pretty buggy. It won’t play with the windows player, and the only way to listen to it will be by dragging it onto a browser. If I try to advance the audio it will cut off immediately, and it will also not replay unless I refresh the page.
I’m assuming these problems have to do with the way I’m converting it, but I don’t know how to avoid them.Thank you.
-
Finding audio peaks in video files
23 octobre 2013, par Adam LangsnerI have a bunch of video files that I want to process. I want to write a program that can find the audio peaks in each file and return the times where those peaks occurred.
I've looked for a lot of different APIs in different languages but couldn't get any of them to work. I am partial to php and java, so if anyone knows any good audio processing libraries in those languages that would be great ! But really I don't care too much about the language. I will need to run this program on a cron.
Also, is it possible to use system calls to ffmpeg from within a script to accomplish this ? Thanks in advance.