
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (85)
-
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 (...) -
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6489)
-
Why Can't i view a few of my mp4 files in my .erb but can in html file ?
27 avril 2016, par Joseph McKenzieI have a site that I’m working on for a customer and the strangest thing is happening to me. I pull in a list of videos from a database table and it plays the video that I want it to, this all works fine.
For some reason some of the video files will not play in either chrome nor Firefox when viewing my page from an .erb file,but they will work in Microsoft edge. They will all work in an .html file though in all my browsers they are raw .264 files converted to mp4 via ffmpeg .
I would think if it was a file corruption it wouldn’t play fine in a .html file or Edge.
<% links[0,1].each do |links|%>-->
<% if links[1] == "Not_Watched"%>
<video width="320" height="240" controls="controls">
<source src="../videos/<%=links[0]%>" type="video/mp4">
</source></video>
<%end%>
<%end%>
get '/page1' do
thing1= database.execute("select * from thing1");
thing2= database.execute("select * from thing2")
links = database.execute("select * from links")
erb :page1, :locals => {:thing1=> thing1, :thing2=> thing2, :links => links}
endI had to change some of the code names up because i cant put up to much of this code online...... and there is a lot more I didn’t include because didn’t have anything to do with anything as far as I could imagine. If anyone thinks it could have a bearing ill post some of it but changed up so that I can
-
What video codec for little number of color ?
12 mars 2013, par Scorpi0I am trying to make a video with AForge FFMPEG library.
My video consist in little arrow moving, drawn with System.Drawing namespace.
So I draw in a graphic, and I add image by image to the video. This method is inspired from this answer.Now, the prolem I got is that all the codecs I tried give very low result. The arrows have very bad borders, I don't think classic codec fit to this type of image.
In fact, I need something very close to a raw format. But raw format give me 1Go video size for 5 seconds video.
I'm only drawing arrow, filled with the same color, on a uniform background, so I wonder if there is a special video codec that can output a HD result with an acceptable file size.
Painted arrow :
Video arrow :
The video will be shipped to our clients. So we are seeking for a solution with the least constraint on the reading process.
-
Build FFmpeg with libaom using MSYS
21 février 2021, par Alexander DyagilevI'm trying to build
FFmpeg
(version4.3.1
) with--enable-libaom
forWindows
usingMSYS
andMicrosoft Visual C++
.

Configure script says :
ERROR: aom >= 1.0.0 not found using pkg-config


But I have
libaom
(built it from sources) and paths to it are specified :

set INCLUDE=%INCLUDE%;%~dp0..\..\libaom-build\prebuilt\include;
set LIB=%LIB%;%~dp0..\..\libaom-build\prebuilt\windows\x64\lib;



This is how I call the configuration script :


./configure --prefix=$PWD/../../prebuilt/windows/x64 --toolchain=msvc --extra-cflags="-MD" --arch=x64 --disable-x86asm --disable-iconv --disable-network \
--enable-filter=stereo3d --enable-libmp3lame --enable-libaom --enable-libdav1d \
--extra-cflags="-I$PWD/../../../zlib-build/prebuilt/include -I$PWD/../../../libpng-build/prebuilt/include -I$PWD/../../../lame-build/prebuilt/include -I$PWD/../../../libaom-build/prebuilt/include -I$PWD/../../../libdav1d-build/prebuilt/include" \
--extra-ldflags="-L$PWD/../../../lame-build/prebuilt/windows/x64/lib -L$PWD/../../../libaom-build/prebuilt/windows/x64/lib -L$PWD/../../../libdav1d-build/prebuilt/windows/x64/lib"