
Recherche avancée
Autres articles (52)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)
Sur d’autres sites (6071)
-
Call ffmpeg command from matlab (ubuntu 12.04)
30 novembre 2014, par bigpig245I’m trying to call ffmpeg function to get duration of video from matlab. In command line, it returns ok :
ntrang@ubuntu:~$ ffmpeg -i /home/ntrang/projects/dataset/hmdb51/01_test/a1.avi 2>&1 | sed -n "s/.*Duration: \([^,]*\), .*/\1/p"
it returns 00:00:18.03
But when I call it from matlab by system command :
>> system('ffmpeg -i /home/ntrang/projects/dataset/hmdb51/01_test/a1.avi 2>&1 | sed -n "s/.*Duration: \([^,]*\), .*/\1/p"');
it returns empty.
This is my env setting in Matlab
LD_LIBRARY_PATH='/usr/local/MATLAB/R2013a/sys/os/glnxa64:/usr/local/MATLAB/R2013a/bin/glnxa64:/usr/local/MATLAB/R2013a/extern/lib/glnxa64:/usr/local/MATLAB/R2013a/runtime/glnxa64:/usr/local/MATLAB/R2013a/sys/java/jre/glnxa64/jre/lib/amd64/native_threads:/usr/local/MATLAB/R2013a/sys/java/jre/glnxa64/jre/lib/amd64/server:/usr/local/MATLAB/R2013a/sys/java/jre/glnxa64/jre/lib/amd64'
PATH='/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/lib/jvm/jdk1.7.0_51/bin'I also create symbolic link for libstdc but it can help nothing...
I have looking around on Internet for solution but not so good so far... What should I do ?
I’m using Matlab R2013a on Ubuntu 12.04.5 LTS 64bit...
Thanks in advance.
-
avformat/mov : set correct error code in mov_read_custom
27 novembre 2017, par Pan Bianavformat/mov : set correct error code in mov_read_custom
In function mov_read_custom(), it returns 0 on the path that av_malloc()
returns a NULL pointer. 0 indicates success. An error code should be
assigned to ret.Signed-off-by : Pan Bian <bianpan2016@163.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/mpegvideo_enc : Call ff_h261_encode_init() earlier
2 octobre 2022, par Andreas Rheinhardtavcodec/mpegvideo_enc : Call ff_h261_encode_init() earlier
It does not require anything that is being set between
the new position where it is called and the old position
where it used to be called ; and nothing that it sets
gets overwritten between these two positions.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>