
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (21)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (3551)
-
How to configure FFmpeg library with ndk r12 using windows 7 64 bit operating system for android
13 juillet 2016, par jackI want to merge mp3 audio file with surfaceview recorded video in background. So after lots of research i get FFmpeg concept for achieving this kind of functionality. But i am not know how to configure Ffmpeg library with ndk in android studio using windows 7 64 bit os. So if any one can have knowledge about it so please share with me. Thank you in advance.
-
FFmpeg error - “at least one output file must be specified” windows version
30 juin 2016, par AComputertI’m having a little trouble, and I feel like the solution is probably starting me in the face.
How Can I extract mp4 from HTTP live streaming m3u8 file ? I Tried this command below :ffmpeg -i http://ms1.movieland.ir/marci6z9OSicn34CRRcin2y4nv6KRZvigAIBsBbBGlj2HUPZBeEOY1019Zxc6zlQrq3ZkYrW0PiM1WDbpVn2JQ2/vod/5787c62c-fb29-4ca4-a328-b7447bb83436/medialist.m3u8?rpt=%5C2016%5C6%5C5787c62c-fb29-4ca4-a328-b7447bb83436&pid=0 -c copy -bsf:a aac_adtstoasc f:\stream\dora.mp4
When run, this yells at me that "At least one output file must be specified". I’ve been knocking me head on the wall for hours now, what am I missing ?
-
Windows : How to build X264.lib instead of .dll
25 juin 2015, par user1884325I downloaded the X264 source and installed mingw.
Step 1 :
Executed this in the MINGW bash :
./configure —disable-cli —enable-shared —enable-win32thread -
extra-ldflags=-Wl,—output-def=libx264.def
and then ’make’
Step 2 :
Renamed the libx264-142.dll to libx264.dll and Opened up VS2012 Command Prompt and executed this :
LIB /DEF:libx264.def
which gave me libx264.lib and object libx264.exp
Step 3 :
Included the lib file in a VS2012 project which uses the X264 API.
Problem :
When I start the project I get the following error message :
"The program can’t start because libx264.dll is missing from your computer"
Question :
Why is it looking for the dll when I’m linking the static library in ?
How do I resolve this ? I would like to build a static X264 library which I can link in with my project.
EDIT :
I just had to put the dll in the same directory as the project executable.
However - My question still stands : How do I build a static x264 library ? So I don’t need the dll ?