
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (63)
-
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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (6373)
-
FFMPEG 5 AVStream.cur_dts is removed
14 octobre 2022, par JohnIn the ffmpeg 5+, i noticed that the field cur_dts in AVStream is removed, anyone knows whats the alternative way ?


Currently I am using the below code to generate video :


if (packet->dts <= stream->cur_dts) {
 logD(RECORDER_TAG, "DTS not increasing, packet.dts:%d, cur:%d.", packet->dts,
 stream->cur_dts);
 ret = 0;
 av_packet_unref(packet);
 break;
 }



-
ffmpeg - concatenate several videos with xfade transition
8 mai 2021, par ilimI have
N
videos, and I'm usingffmpeg
to concatenate them withxfade
transitions between them. The video files are named as positive integers representing their order in the concatenated output, and none of them have any audio. In fact, each file just includes a different image with no animation that stays on screen all through that video's duration.

I'm using a simple command I found in a response to an existing question to concatenate the first 2 videos :


ffmpeg -i 1.mp4 -i 2.mp4 -y
 -filter_complex "xfade=transition=fade:offset=3.5:duration=0.5"
 1-2.mp4



I planned to employ that same command for all the videos, each time appending a single video to the cumulative one produced so far, and producing an intermediary output to be used later.


Specifically, I first concatenated files
1.mp4
and2.mp4
, and recorded the result into1-2.mp4
, which was produced correctly. Videos had the respective duration of4
and8
seconds, and the resulting1-2.mp4
was12
seconds long, with the transition occurring when it should.

The problem started when I tried concatenating
1-2.mp4
and3.mp4
. I used the following command to generate a concatenation of videos [1-3].

ffmpeg -i 1-2.mp4 -i 3.mp4 -y
 -filter_complex "xfade=transition=fade:offset=11.5:duration=0.5"
 1-3.mp4



The video produced seems to be an exact copy of
1-2.mp4
, and contents of3.mp4
are not present at all in the resulting1-3.mp4
. Video file3.mp4
was3
seconds long, but the resulting1-3.mp4
was12
seconds long, just like1-2.mp4
was.

Apart from the input and output file names, both commands are the same. I was suspicious of having set the
offset
parameter of the transition incorrectly, but the first 2 files were merged successfully.

I am at a loss as to what I'm doing incorrectly here. Is there a particular caveat of the
xfade
filter that gets problematic when used among 2 files with one of them already having that filter ?

Any suggestions as to how I may debug or fix this behavior ? I'd welcome any alternative means of concatenating these (i.e., with some transition effects) in a simple fashion as well.


I'm planning to use these commands in a Python script, so I'd appreciate any alternative solution not involving any gigantic commands or parameters.


Just to be thorough, I should mention that I have
ffmpeg
version4.3.1
installed viasnap
.

-
Revision 2c886953d1 : Reinsert macro to fix issue 884. Change 72056 unfolded some macro definitions,
2 décembre 2014, par Peter de RivazChanged Paths :
Modify /vp9/encoder/vp9_mcomp.c
Reinsert macro to fix issue 884.Change 72056 unfolded some macro definitions,
but lost some alternative behaviour required for
high bitdepth encodes.
This causes the encoder to crash, see issue 884.Change-Id : I8ce4d73c9fe0a3c10ccb86fba210fabc8b2f0ccc