
Recherche avancée
Autres articles (26)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (5507)
-
Command find and and convert using ffmpeg
10 décembre 2013, par molwikoI would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
Thanks in advance.
The two command line :find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3 -
Alternate 2 videos with ffmpeg
2 juin 2012, par enzo.rivelloHere is the problem :
i got 2 videos, and 3 intervals ;
i need to create one video by mixing this 2 videos switching video A to B at interval 1, B to A at interval 2 and again A to B at interval 3.Switching needs to be done along the audio files .
Right now the only solution i came up was to cut the 2 videos and then chain them in the right order, but i was asking if there's a more elegant way to do this !
Thank you everyone in advance !
-
ffmpeg log file size limitation
6 mars 2014, par user3248865In my project I need to process ffmpeg log, so it is redirected to a file.
I wonder if there is a chance to set size of this file where ffmpeg writes log. My ffmpeg command captures webcam input, so the file size is increasing endlessly.
I know I can use pipes, but it is an alternate solution.
Thanks in advance.