
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (80)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (6398)
-
avcodec/sanm : codec23 decoder
11 mars, par Manuel Laussavcodec/sanm : codec23 decoder
This codec alternatingly skips and changes existing pixels.
A second 16bit parameter in the FOBJ header indicates how to do
the pixel changes : either by specifying a LUT in the codec datastream
or by adding a constant value to the pixel.Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>
-
Converting jpg's to mp4 using FFmPy
30 juin 2018, par MattI have a file full of jpg images that I would like to convert into an mp4 video. I have managed to do this on the command line using
cat path/to/pictures/%d.jpg | ffmpeg -f image2pipe -i - output.mp4
However when I try and go about doing it via FFmPy :
ff = ffmpy.FFmpeg(
inputs={'path/to/pictures/%d.jpg': None},
outputs={'output.mp4': None})
ff.cmd
ff.run()I will run into the error :
FFRuntimeError: `ffmpeg -i path/to/pictures/1.jpg -f output.mp4` exited with status 1
STDOUT:
STDERR:I’m really not sure what the issue is here, any change I make results in the same error. Any help would be appreciated, thanks.
-
Convert Videos with FFMPEG to PowerPoint 2016 compatible video format [closed]
11 septembre 2020, par Sebastian S.I am trying to convert a bunch of videos to a video format that is natively supported by PowerPoint 2013/2016 on a Windows 7 system.


Microsoft recommends on their website mp4 with h264 and aac.


Video and audio file formats supported in PowerPoint




In PowerPoint 2013 and later, and in PowerPoint 2016 for Mac, for the best video playback experience, we recommend that you use .mp4 files encoded with H.264 video (a.k.a. MPEG-4 AVC) and AAC audio. In PowerPoint 2010, we recommend that you use .wmv files.






We recommend using .m4a files encoded with AAC audio. In PowerPoint 2010, we recommend that you use .wav or .wma files.




Audio is not important for me.
I tried to convert my videos with ffmpeg using the following options :


ffmpeg -i Input.avi -c:v libx264 -preset slow -crf 22 -c:a copy Output.mp4



However I cannot import the video to PowerPoint 2016 (32 or 64bit, I tried both). I always get a missing codec error.


PPT Error when including video files


Has anyone successfully encoded videos to a natively supported PowerPoint video format (on Windows) ?