
Recherche avancée
Autres articles (61)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (11431)
-
FFMPEG video conversion to MP4 works everywhere except in iOS Safari/Chrome
25 novembre 2023, par LinesofcodeI use the following code to convert
.webm
videos to.mp4
using the FFMPEG library :


ffmpeg -i video.webm -vcodec h264 -acodec aac -strict experimental video.mp4




This works flawless when playing the converted video in Windows (Chrome/Firefox), Mac (Safari/Chrome), Android (Chrome) but it does not work when watching through iOS (Safari/Chrome).



At first I thought it might be an
mp4
problem ? But then I played without any problems in my iOS Safari this video https://www.w3schools.com/html/mov_bbb.mp4 which is also amp4
.


So this tells me that something is not quite right about the conversion.



What am I missing in the conversion ?



Log from PuTTy : https://pastebin.com/VLSPL0nC


-
Broken *.m3u8 file [closed]
26 mai 2013, par Wildan MuhlisI have created this file using
ffmpeg
.
Does Anyone know what's wrong with this*.m3u8
file ?http://202.89.117.50/hilal/global_assets/temp/7580338/bogor.m3u8
It could played in
VLC
but couldn't played in browser and other media such asjwPlayer
. -
How to preserve transparency when using png to make video with ffmpeg
27 septembre 2016, par Ryan JamesI have a series of png’s that have an alpha channel as a background. Each file is named like file_name.0001.png and so on, in subsequent order. I’d like to join these png’s into a video with ffmpeg and maintain the transparency.
I’ve tried a couple of things but I suspect I’m running into a codec issue. When I run ffmpeg, the video is created but the background is black.
If it makes a difference, I’m wanting to use the video in Microsoft Powerpoint. Thanks !
Edit
The suggested duplicate is very close to what I was looking for, thank you ! The only reason it’s not a complete solution is none of the options presented in the other thread work well with Microsoft Powerpoint. None of the codecs used in the suggested solution play well with Powerpoint. This is not the fault of ffmpeg, but of Powerpoint.Though ffmpeg doesn’t seem to be able to do what I need, I found that imagemagick did the trick. I was able to create a gif from the images and the alpha channel was preserved. I used the following :
convert -dispose 3 -coalesce images.*.png gif_file_name.gif
The
-dispose 3
is critical as it tells imagemagick to clear the image prior to overlay, otherwise, you can see each image overlaid on each other (since they have the transparent background).