
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (60)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (4704)
-
(no accepted answer) How to merge 2 overlapping videos into one video using ffmpeg or opencv ?
3 janvier 2021, par Muhammad UmerMerging two videos is easy, been answered couple of times. What I have is multiple overlapping videos. A video might have overlaps with video before it. Meaning if video 1 covers 1-5 timeline then video 2 may overlap 1, and cover 3 to 8. Merging them as is would result in 1-5|3-8, when i need 1-8 only.



Videos are alphabetically sorted.



My general idea of solution is...



- 

- grab last frame of the video
- if it's first video continue
- if it's not first video, ie. 2nd, search for frame saved in previous steps frame by frame
- if it reaches to last frame of current video then there is no overlap continue
- if it founds a frame then clip 2nd video up to that frame inclusive and then go to next frame
- once all videos have been analyzed, merge them into one video.















I need to translate this to ffmpeg commands. Or opencv if that's a better tool.



If there is better way of doing that, I'm interested in that too.


-
Requirements for using ffmpeg to create mpeg4 files in SaaS solution
25 août 2016, par Paul FlemingMy requirement is :
On upload of a supported video file, convert the file to common formats to maximize web compatibility.
Essentially, I want to take a non-web-supported video file, and converted it to WEBM and MPEG4. This will take place on a Windows Server VM inside Microsoft Azure.
ffmpeg seems to be the de facto standard for video conversion yet it introduces licensing hell, not only with GPL/LGPL but by not offering a commercial license, meaning I now have to worry about paying royalties to MPEG-LA.
Can anyone advise on MPEG-LAs licensing model as it applies to SaaS ? I will not be distributing ffmpeg (runs server side) and the conversion takes place on Windows (Server) OS.
-
Comparison of two ffmpeg commands for video segment
14 juillet 2021, par Anas AnsariI have two commands for making video segments in android ffmpeg


- 

- -ss startTime -i inputVideo -f segment -segment_time segmentDuration -reset_timestamps 1 -vcodec copy -b:v2 097152 -b:a 48000 -ac 2 -ar 22050 outputPath
- -ss startTime -i inputVideo -f segment -segment_time segmentDuration -reset_timestamps 1 outputPath






I have tried them both and noticed that first command is very very fast than second


Since I am new to ffmpeg , i really don't know them meaning of every argument in these commands


Can anyone plz explain me why first command is better and will it cause any errors in future