
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (37)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (4908)
-
GIF to MP4 Conversion with ffmpeg won't play in browsers or certain computers
24 janvier 2014, par GordnfreemanI am using a script to convert a gif to an mp4 file using ImageMagick and ffmpeg (the latest version from http://ffmpeg.gusari.org/static/). The conversion works and gives me a mp4 file which I can play on my home computer but not any other one, the file also does not play in browsers. I have downloaded a lot of codecs at home so I suspect that is the issue.
The code I am using, I will include all of it incase there is a problem earlier on in the script :
convert ORIGINALGIF.gif NEWPNG%03d.png
ffmpeg -framerate 10 -i NEWPNG%03d.png NEWVIDEO.mp4And that is about it this script works and creates the file but I can only view it on my home computer, I did some research and found the script below :
ffmpeg -framerate 10 -i NEWPNG%03d.png -b 1500k -vcodec libx264 -vpre slow -vpre baseline -g 30 NEWVID.mp4
I have tried this and a few variations of it but even if the file gets made it cannot be played in any browsers.
-
ffmpeg what is the codec for play video in windows media player and web browser
27 septembre 2016, par SwagatI have a requirement to convert video to mp4 which can play both windows medial player(latest version) and web browser(video tag)
I got to run video in both windows media player or web browser, but two different video. i.e. in below scenario :
For windows media play, I am using
-codec:v mpeg4
and an example is :ffmpeg -i input.mp4 -filter_complex -codec:v mpeg4 -flags:v +qscale -global_quality:v 0 -codec:a libmp3lame output.mp4
For Web Browser I need to run with
-codec:v libx264
and an example is :ffmpeg -i input.mp4 -filter_complex -codec:v libx264 -flags:v +qscale -global_quality:v 0 -codec:a copy output.mp4
Both them are working perfectly in their respective player. Even I tried with combine both codec, its obvious, it is raising error.
Any way to play in both place. Any way of direction will also help me here.
Thanks in advance.
-
Why is safari browser not able to play h.264 high10 with pixel format yuv420p10le video ?
15 avril 2022, par Rajat RaghuwanshiI have read and found that Safari Supports HDR as well as H264 Codecs.
But When I generate HDR video using h.264 codecs using ffmpeg, the safari gives error in playing the video which chrome is easily able to play.
Video Error on Safari

I am able to play the video with pixel format yuv420p ( 8 bit ).
Is 10 bit video not supported with H264 in Safari ?


I used FFMPEG.WASM to generate video with following properties :

-framerate 0.1 -pattern_type glob -i *.png -tag:v avc1 -c:v libx264

-profile:v high10 -crf 20
-sws_flags spline+accurate_rnd+full_chroma_int

-color_trc smpte2084 -color_primaries bt2020
-color_range pc -colorspace bt2020nc

-pix_fmt yuv420p10le -vf eq=brightness=0.12 out.mp4"