
Recherche avancée
Autres articles (44)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (5130)
-
Concatenate videos with audio and overlay with complex Filtergraph in FFMPEG [closed]
15 octobre 2024, par Jamie ShepherdI am new to FFMPEG and trying to get my head around the concepts and the syntax.


I have 3 video files that I am trying to concatenate into one file, while overlaying an image on the middle video, all while maintaining the audio. Sadly however there is not many assurances on these files so the resolutions could be different, different audio channels etc. The documentation on the "concat" video filter states that :




All corresponding streams must have the same parameters in all segments




As such I have tried to use a complex filtergraph to scale all videos to the same resolution before using concat however I am getting an
Unable to choose an output format
error and don't fully understand what it means. The command I have so far is this :

ffmpeg \
 -i intro.mp4 \
 -i main.mp4 \
 -i outro.mp4 \
 -i imageOverlay.png \
 -filter_complex \
 '[0] scale=1920:1800 [scaledIntro];' \
 '[1] scale=1920:1800 [scaledMain];' \
 '[2] scale=1920:1800 [scaledOutro];' \
 '[3] scale=1920:1800 [scaledOverlay];' \
 '[scaledMain][scaledOverlay] scale=1920:1800 [scaledOverlayOutro];' \
 '[scaledIntro:v] [scaledIntro:a] [scaledMain:v] [scaledOverlayOutro:a] [scaledOverlayOutro:v] [scaledOutro:a] concat=n=3:v=1:a=1 [v][a];' \
 -map '[v]' -map '[a]' files/output/output.mp4



The error I get is :


[AVFormatContext @ 0x121f08d40] Unable to choose an output format for '[1] scale=1920:1800 [scaledMain];'; use a standard extension for the filename or specify the format manually.
[out#0 @ 0x121f08c80] Error initializing the muxer for [1] scale=1920:1800 [scaledMain];: Invalid argument
Error opening output file [1] scale=1920:1800 [scaledMain];.
Error opening output files: Invalid argument



Would love to understand what is going on here.


Have I made a syntax mistake ? Am I missing something conceptually here ?


Many thanks for your time


-
Q&A : An interview with Matomo founder, Matthieu Aubry
-
How to extract fully synced audio with ffmpeg ?
2 janvier 2023, par Brendan HillI have an MP4 file with video and audio. I need to extract the audio stream only to an MP3 file.


However it is critical for our application that the timing / synchronization of the audio file is exactly aligned with the original video, as we cross-correlate audio features based on timing.


I currently use this command :


ffmpeg -y 
 -v error 
 -map 0:a ./the-output-file-mp3
 -map 0:v ~/a-dummy-video-output-file.mp4
 -i ~/the-input-file.mp4
 -acodec copy 
 



as I read somewhere that mapping both 0:a and 0:v would guarantee alignment & synchronization. I then discard the video file as it is not needed.


However it is orders of magnitude faster to just extract the audio instead :


ffmpeg -y 
 -v error 
 -map 0:a ./the-output-file-mp3
 -i ~/the-input-file.mp4
 -acodec copy 



But I don't know if this guarantees alignment, because I read on this page that :


If you only extract audio from a video stream, the length of the audio may be shorter than the length of the video. To make sure this doesn't happen, extract both audio AND video with the same call to ffmpeg, e.g. "ffmpeg -i vid.avi -map 0:a audio.wav -map 0:v onlyvideo.avi


However perhaps I am putting too much weight on that comment. I don't care if the audio clip finishes early, but it is critical that it does not start late, or get de-synced from the original video at any point.


What is the most efficient way with ffmpeg to extract the audio stream with a guarantee that it is 100% aligned in time to the video (and starts at exactly the same time) ?


Will this method guarantee alignment ?


ffmpeg -y 
 -v error 
 -i ~/the-input-file.mp4
 -vn
 -acodec copy 
 ~/the-output-file.mp4