
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (33)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4724)
-
How to use guardianproject's ffmpeg library for android
24 juillet 2014, par Abdul QadirHere’s the link to the ffmpeg android library I’m trying to use :
https://github.com/guardianproject/android-ffmpegI’m trying to follow what is written in this post in order to use it :
http://stackoverflow.com/a/21553337/1462190- Included the ffmpeg library project into the eclipse. (File > Import)
- Added the ffmpeg library to my application. (Right clicked my project’s name > Properties > Android > Library)
However I can’t get it to work. I get the following errors :
In console :
android-ffmpeg-library] Could not find android-ffmpeg-library.apk!
In DDMS :
07-24 17:00:24.990: E/AndroidRuntime(23935): java.lang.NoClassDefFoundError: org.ffmpeg.android.FfmpegController
I have no clue to what could be the problem. Although i’m noticing one thing which I think I should mention here. After the second step, when I add the library, I see the green check indicating everything is fine. But after I run my application (which crashes before it launches) I see a red cross which of course indicates something’s wrong.
Before I run my application :
After I run my application :
Any help would be appreciated ! thank you !
-
glreadpixels is slower than x11 based screenshot
23 décembre 2013, par quartzI am working on an opengl based simulation application, in which I need to make multiple screenshots in a second. I have tried 2 ways of doing it in my application.
1) use glreadpixels
2) use x11 based screenshot. ex : ffmpeg -f x11grab -s 1024x768 -i :0.0 output.pngI found that second solution is about 3 times faster than first one. I have expected the first solution to be faster. But in practice it is slower. I am curious why glreadpixels is slower ?
-
How to set sample format when using sox with ffmpeg ?
18 décembre 2020, par FinchI am trying to convert a 44.1k 16bit flac file into 48k 32 bit (float) wav file.


This is the command I use :


'ffmpeg -i in.flac -af aresample=resampler=soxr:precision=28:out_sample_fmt=fltp:out_sample_rate=48000 out.wav'


No matter which value I use for
out_sample_fmt
likes32, flt, fltp
the outputout.wav
is only 16 bit.

What am I doing wrong here ? How to get the highest quality (as in resampling) 32 bit floating point wav file with
ffmpeg
usingsoxr
?