
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 (9)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (5233)
-
avformat/mov : get the correct fragment stsd_id when decrypting the sample
1er septembre 2022, par Wang Yaqiangavformat/mov : get the correct fragment stsd_id when decrypting the sample
When determining whether a packet should be decrypted,
should use the stsd_id of the fragment where the current packet is located.Reviewed-by : Zhao Zhili <zhilizhao@tencent.com>
Signed-off-by : Wang Yaqiang <wangyaqiang03@kuaishou.com> -
avutil : Add NV24 and NV42 pixel formats
7 mai 2019, par Philip Langdaleavutil : Add NV24 and NV42 pixel formats
These are the 4:4:4 variants of the semi-planar NV12/NV21 formats.
These formats are not used much, so we've never had a reason to add
them until now. VDPAU recently added support HEVC 4:4:4 content
and when you use the OpenGL interop, the returned surfaces are in
NV24 format, so we need the pixel format for media players, even
if there's no direct use within ffmpeg.Separately, there are apparently webcams that use NV24, but I've
never seen one. -
using wamp how to make video from any image by using ffmpeg comand in php
17 septembre 2015, par OfficeI want to make video by ffmpeg from any image on wamp server using php
But I can’t understand how to execute the command,any easy way to make video from any image by php with library ffmpeg useMy form for choose any file
<form action="" method="post" enctype="multipart/form-data">
<input type="file" />
<input type="submit" value="submit" />
</form>and same page my action work
<?php
if(isset($_POST['submit'])){
$ffmpeg = "c:\\ffmpeg\\bin\\ffmpeg";
// ffmpeg .exe file located on my c disk on this directory
$videofile = $_FILES["video"]["name"];
// I choose a image file having name a.png from desktop
// I want to create video file from image by executing this command
$cmd = "ffmpeg -loop 1 -i $videofile -c:v libx264 -t 30 -pix_fmt yuv420p out.mp4";
// But command not executed they print command not executed
if(shell_exec($cmd)){
echo 'Comand Executed.....!';
}else{
echo 'Comand Not Executed....!';
}
}
?>