
Recherche avancée
Autres articles (55)
-
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 -
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (7071)
-
Create directory list where each line in list consists of mp3 file name and mp3 duration
14 octobre 2015, par KesI wish to produce a list from the directory of the mp3 file names in the directory and the playing duration of each file.
The below command produces a list of mp3 files in the directory
for name in *.mp3; do ffmpeg -i "$name" 2>&1 | grep -o -P "(?<=Input #0, mp3, from ').*(?=.mp3':)" ; done;
The below command produces a list of the duration of each of the MP3 files
for name in *.mp3; do ffmpeg -i "$name" 2>&1 | grep -o -P '(?<=Duration: 00:).*(?=.[0-9]{2}, start)' ; done;
I need to combine the output of both these commands into one output showing
- mm:ss filename
- mm:ss filename
- mm:ss filename
- mm:ss filename
- mm:ss filename
- mm:ss filename
- ..
-
lavc : add AV_CODEC_ID_DAALA to the list of codec IDs and bump minor
21 octobre 2015, par Rostislav Pehlivanovlavc : add AV_CODEC_ID_DAALA to the list of codec IDs and bump minor
This commit shall introduce the first step of adding support for the
Daala next generation video codec to FFmpeg. Although still in
development, the codec is showing good progress and exchanging work
through IETF drafts. The companies behind Daala are also participating
in the Alliance for Open Media, so it’s likely that whatever the result
any of these collaborations produce it’s probable that elements from
Daala could be used in them, or perhaps this codec itself could be the
result. -
Create video from list of images using ruby on rails
20 décembre 2015, par Hamza KhanHi I want to create a video from list of images on ruby on rails. I have searched alot and all i found out was ffmeg, but i guess that’s a command line tool. How do i create it using pure ruby on rails. Is there any gem or tutorial. Please Help.