
Recherche avancée
Autres articles (37)
-
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (7102)
-
Anomalie #3520 : [3.1 22372] Le clic du milieu de la souris referme le détail observé
2 août 2015, par realet RealETEn fait, le comportement sur ces triangles est dérogatoire par rapport à celui habituel : au lieu que ce soit au survol de la souris que ça se déplie, c’est au clic.
Cependant, c’est peut-être mieux pour les tablettes et mobiles.
-
How to upload files to Azure Blob Stotage like FTP ?
25 janvier 2016, par CG-GuyI am able to upload files from my
ffmpeg
app to an FTP using this path :ftp://[user:password]@server[:port]/MyFolder/video/video.flv
How do I achieve the same thing in Azure Blob ? I have tried this path :
https://[account-name].blob.core.windows.net/video/video.flv /DestKey:[account-storage-key]
But that doesn’t seem to work. TCP connection shows the app is making a connection with the Azure account to the remote address
104.208.XXX.XX
and remote port443
. However, it drops the connection and starts attempts to reconnect repeatedly. It will then time out after countless attempts and crash the app. I have also tried/>
without success. The same thing happens. It attempts connecting to the remote address and port80
.The FFMPEG app has full access to firewall ports and the app communication shell show files are published without errors. System is a Server 2008 R2 unit on-site, not VM.
-
How to build Aubio for Android ?
16 décembre 2014, par AdamskiI’m struggling to find a way to build Aubio for Android. It comes with a build tool using waflib, but I can’t find a way to cross-compile it for Android.
To compile for Android on OSX I tried :
./waf configure build --with-target-platform armeabi
which in my case gave me the following output
Checking for 'gcc' (c compiler) : /usr/bin/gcc
Checking for header stdlib.h : yes
Checking for header stdio.h : yes
Checking for header math.h : yes
Checking for header string.h : yes
Checking for header limits.h : yes
Checking for C99 __VA_ARGS__ macro : yes
Checking for FFT implementation : ooura
Checking for program pkg-config : /usr/local/bin/pkg-config
Checking for 'sndfile' >= 1.0.4 : not found
Checking for 'samplerate' >= 0.0.15 : not found
Checking for 'jack' : not found
Checking for 'libavcodec' >= 54.35.0 : not found
Checking for 'libavformat' >= 52.3.0 : not found
Checking for 'libavutil' >= 52.3.0 : not found
Checking for 'libavresample' >= 1.0.1 : not found
Checking for all libav libraries : not found
Checking for program txt2man : not found
Checking for program doxygen : not foundI then used Homebrew to install all the missing libraries. The libav ones can be installed by doing
brew install ffmpeg
which asked me tobrew link lame
before it would work.’sndfile’ is installed with
brew install libsndfile
, similarly forbrew install libsamplerate
. The others can be installed using the names given.Got errors about missing
, so commented out ifdef surrounding include :
55 //#ifdef HAVE_MATH_H
56 #include
57 //#endifCurrently I’m getting the following errors, obviously because I’m not specifying the correct target and toolchain.
Undefined symbols for architecture x86_64:
"_CFStringCreateWithCString", referenced from:
_getURLFromPath in utils_apple_audio.c.1.o
"_CFURLCreateWithFileSystemPath", referenced from:
_getURLFromPath in utils_apple_audio.c.1.o
"_ExtAudioFileCreateWithURL", referenced from:
_aubio_sink_apple_audio_open in sink_apple_audio.c.1.o
"_ExtAudioFileDispose", referenced from:
_aubio_sink_apple_audio_close in sink_apple_audio.c.1.o
_aubio_source_apple_audio_close in source_apple_audio.c.1.o
"_ExtAudioFileGetProperty", referenced from:
_aubio_source_apple_audio_open in source_apple_audio.c.1.o
"_ExtAudioFileOpenURL", referenced from:
_aubio_source_apple_audio_open in source_apple_audio.c.1.o
"_ExtAudioFileRead", referenced from:
_aubio_source_apple_audio_do in source_apple_audio.c.1.o
_aubio_source_apple_audio_do_multi in source_apple_audio.c.1.o
"_ExtAudioFileSeek", referenced from:
_aubio_source_apple_audio_seek in source_apple_audio.c.1.o
"_ExtAudioFileSetProperty", referenced from:
_aubio_source_apple_audio_open in source_apple_audio.c.1.o
"_ExtAudioFileWrite", referenced from:
_aubio_sink_apple_audio_do in sink_apple_audio.c.1.o
_aubio_sink_apple_audio_do_multi in sink_apple_audio.c.1.o
"_ExtAudioFileWriteAsync", referenced from:
_aubio_sink_apple_audio_do in sink_apple_audio.c.1.o
_aubio_sink_apple_audio_do_multi in sink_apple_audio.c.1.o
"_kCFAllocatorDefault", referenced from:
_getURLFromPath in utils_apple_audio.c.1.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Undefined symbols for architecture x86_64:
"_ExtAudioFileCreateWithURL", referenced from:
_aubio_sink_apple_audio_open in libaubio.a(sink_apple_audio.c.1.o)
"_ExtAudioFileDispose", referenced from:
_aubio_sink_apple_audio_close in libaubio.a(sink_apple_audio.c.1.o)
_aubio_source_apple_audio_close in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileGetProperty", referenced from:
_aubio_source_apple_audio_open in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileOpenURL", referenced from:
_aubio_source_apple_audio_open in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileRead", referenced from:
_aubio_source_apple_audio_do in libaubio.a(source_apple_audio.c.1.o)
_aubio_source_apple_audio_do_multi in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileSeek", referenced from:
_aubio_source_apple_audio_seek in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileSetProperty", referenced from:
_aubio_source_apple_audio_open in libaubio.a(source_apple_audio.c.1.o)
"_ExtAudioFileWrite", referenced from:
_aubio_sink_apple_audio_do in libaubio.a(sink_apple_audio.c.1.o)
_aubio_sink_apple_audio_do_multi in libaubio.a(sink_apple_audio.c.1.o)
"_ExtAudioFileWriteAsync", referenced from:
_aubio_sink_apple_audio_do in libaubio.a(sink_apple_audio.c.1.o)
_aubio_sink_apple_audio_do_multi in libaubio.a(sink_apple_audio.c.1.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocatio