
Recherche avancée
Médias (1)
-
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
Autres articles (39)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (4010)
-
mov : Check angle rather than full matrix when updating SAR
9 janvier 2015, par Vittorio Giovaramov : Check angle rather than full matrix when updating SAR
When the display matrix is not the identity one, but the rotation angle
is zero, there is no need to update the sample aspect ratio.Otherwise, it is possible to obtain negative values which interferes
with transcoding in later stages. This kind of behaviour is reproducible
on mov files with "major_brand : MSNV".CC : libav-stable@libav.org
Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com> -
Ffmpeg commands in c# with variables
12 juin 2017, par FearhunterI am using the following command to slice a live stream in pieces :
ffmpeg -i InputStreamURL -acodec aac -strict -2 -vcodec libx264 -hls_wrap 100 -f hls -hls_time 20 /var/www/html/ts/1.m3u8
This is working fine when I execute this in command prompt. Now I want to use this command in C# with variables like this :
private int cuttime;
private int wrap;
ffmpeg -i InputStreamURL -acodec aac -strict -2 -vcodec libx264 -hls_wrap wrap -f hls -hls_time cuttime /var/www/html/ts/1.m3u8I want to connect these variables with database and with a frontend interface in HTML5.
How can I use c# variables into a ffmpeg command ?
Kind regards
-
How to add a ten seconds of still images to an mp4 file using any tool ?
22 mars 2021, par TebyanIs there a way to insert some images or a video to an mp4 for 10 seconds and freeze the rest of the video so it doesn't get read by a media player ? I am not sure if I can explain this correctly but I have been doing searches about mp4 structure an seems like there are not much sources to explain it. I have read about moov/trak/mdat and some other atoms (The basic elements that makeup an mp4 file). So the question shall be how to configure the Trak atom to only play 10 seconds of data inside the mdat atom and the other data should be inside mdat atom but not playable until you programmatically again remove or disable the ten seconds data and configure the trak to play the rest of the file. However that's what I think might be possible so if anyone knows any other kind of way to do pretty much the same thing (it might be encryption) please share. And also I am not much to video codes and stuff so if any names that you think might be foreign to someone with less knowledge about videos please explain it too.