
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (58)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (5370)
-
ffmpeg on windows mobile with C#
19 septembre 2017, par RivI need to work with FFmpeg for windows mobile with C#, in fact I want build player for .m4b,.m4a files. I know that the TCPMP is exist, but I want to make my own.
So I want to use .Net, and I have some questions :-
If I use some C# FFmpeg wrappers, for example TaoFramework, will it work on windows mobile(in case if I use FFmpeg lib compiled for windows mobile) ?
-
In FFmpeg wiki I found this
Once you have compiled, or downloaded,
the Windows DLLs for FFmpeg, you can
use .Net Platform Invoke (PI) to
access the functions in the libraries
libavformat and libavcodec.
Link to source...But I don’t know how can I use it ? I tried to make it with dll that I had downloaded from http://ffmpeg.arrozcru.org/autobuilds/. Maybe I need to compile ffmpeg by myself for this option ?
And last question is - what is libavcodec ? When I downloaded shared build, I got avcodec-52.dll, avfilter-1.dll, ffmpeg.exe, but I coudn’t find libavcodec.dll, or it’s just alias ?
-
-
Is there a way to integrate FFmpeg into own C#-Solution using Visual Studio ?
17 avril 2023, par stupidbutseekingI can't figure out how to use FFmpeg in my own C#-Project.
I downloaded the win64 gpl shared release with the libs from https://github.com/BtbN/FFmpeg-Builds/releases but I can't find a way to integrate it into my existing Visual Studio Solution.


I also tried to compile the libs following this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT for win x64
and also this https://github.com/microsoft/FFmpegInterop
but none worked.


When I reference the dlls (using the Dependency-Manager from VS) it will complain that the references are invalid or not supported.


I also created a new VS Project but the same problem occured. I read in some forum that the target framework has to be netstandard2.0.


I think I missed something but I cant find out what it is.


-
can't install libvorbis on centos 7, fatal error : ogg/ogg.h : No such file or directory
14 octobre 2019, par Abdalla Mohamed Aly IbrahimHello I’ve been trying to install FFmpeg with some libraries using this tutorial
https://trac.ffmpeg.org/wiki/CompilationGuide/Centos?version=85using this command to install the libvorbis
cd ~/ffmpeg_sources
curl -O -L http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.gz
tar xzvf libvorbis-1.3.5.tar.gz
cd libvorbis-1.3.5
./configure --prefix="$HOME/ffmpeg_build" --with-ogg="$HOME/ffmpeg_build" --disable-shared
make
make installi get this error with command make
../include/vorbis/codec.h:26:21: fatal error: ogg/ogg.h: No such file or directory
#include <ogg></ogg>ogg.h>
compilation terminated.and when i install ffmpeg i get this error
ERROR: vorbis not found using pkg-config
Thanks