
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (82)
-
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 (...) -
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 ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (12132)
-
How to convert .m2ts .vob Video to mkv without losing quality in COLAB FFMPEG
19 mai 2020, par Adnan KatperI want to convert .m2ts and vob videos to .mkv in same resolution and quality, so how to do it in COLAB ?
I used a script All in One 1.9.1 it converts successfully but output file is verly low quality and its avc codec is version 3 while i want it to be version High@L4.1.



I have mounted my gdrive and will use it as source of videos.



All in one 1.9.1
https://colab.research.google.com/github/pcodejs/Codemaster/blob/master/All_in_One_1_9_1.ipynb


-
Why does ffmpeg h264 decoder stop decoding when certain type of packets are coming in the input stream ?
28 juillet 2018, par jamsmeI used av_read_frame to get the AVPacket from encoded h264 file. But when this packet (00 00 01 05 94 5a 33 e7 4d 6b d7 ad 13 86 ff 47 83 93 31 f1 e3 0a) is in the input stream (h264 video) ffmpeg decoder stops decoding frames for any subsequent AVPackets.
But if I skip this packet to provide to the decoder the next AVPackets decode just fine. What is wrong with this packet ? Or what is wrong with the ffmpeg decoder ?Below is the test stream for reference.
https://drive.google.com/open?id=1rHCfG4csA3rB4LSgErEBn1F3WfI5nUVr
-
Using ffmpeg to remove green screen from video
27 mai 2024, par CYADI have a video : https://drive.google.com/file/d/1tiP2fX0Xfc6YjIymcHyEXP8-JqEJrlgG/view


I'm trying to use ffmpeg to remove the green screen but none of the commands I use work. I saved a frame as a png and was able to remove the green from it :


ffmpeg -i green.png -vf chromakey=green:0.1 out.png


but the video edit does nothing.


ffmpeg -i video.mp4 -vf chromakey=DarkGreen:similarity=0.2:blend=0.3 output4.mov


I'm on a windows machine and need to output a format iOS and Android can use, though multiple formats are fine. Any thoughts ?