
Recherche avancée
Autres articles (75)
-
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 -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
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 (...)
Sur d’autres sites (5327)
-
The Ultimate Guide to HeatMap Software
-
10 Proven Ways Heatmaps Improve Website Conversions
-
extract audio with ffmpeg
20 décembre 2014, par marcobonny88I need to extract audio from many mov file. I have to utilize the audios inside an iOS app, the goal is to have outputs file with low file size weight and perfectly equal sound to the input file.
So i proceeded extrating audio in this way :ffmpeg -i 6.2.mov -vn -acodec aac -strict -2 try.m4a
The input information :
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '6.2.mov':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
creation_time : 2014-12-03 10:12:08
Duration: 00:00:01.58, start: 0.000000, bitrate: 42754 kb/s
Stream #0:0(und): Video: prores (apcn / 0x6E637061), yuv422p10le(bt709), 960x540, 40383 kb/s, SAR 1:1 DAR 16:9, 23.98 fps, 23.98 tbr, 24k tbn, 24k tbc (default)
Metadata:
creation_time : 2014-12-03 10:12:08
handler_name : Core Media Data Handler
encoder : Apple ProRes 422
timecode : 00:00:00:00
Stream #0:1(und): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32 (24 bit), 2304 kb/s (default)
Metadata:
creation_time : 2014-12-03 10:12:08
handler_name : Core Media Data Handler
Stream #0:2(und): Data: none (tmcd / 0x64636D74), 0 kb/s (default)
Metadata:
creation_time : 2014-12-03 10:12:08
handler_name : Core Media Data Handler
timecode : 00:00:00:00The output information :
Output #0, ipod, to 'try.m4a':
Metadata:
major_brand : qt
minor_version : 0
compatible_brands: qt
encoder : Lavf56.15.102
Stream #0:0(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp (24 bit), 92 kb/s (default)
Metadata:
creation_time : 2014-12-03 10:12:08
handler_name : Core Media Data Handler
encoder : Lavc56.13.100 aac
Stream mapping:
Stream #0:1 -> #0:0 (pcm_s24le (native) -> aac (native))The problem is that re encoding pcm_s24le to AAC create an output that cut the some ms at the beginning.
There is a way resolve or go around the problem ? Like padding the output 50ms...
Helps ?