
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (61)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5492)
-
avcodec/smacker : Use unsigned for prediction values
26 juin 2020, par Andreas Rheinhardtavcodec/smacker : Use unsigned for prediction values
Up until now, the Smacker decoder has pretended that the prediction
values are signed in code like 'pred[0] += (unsigned)sign_extend(val, 16)'
(the cast has been added to this code later to fix undefined behaviour).
This has been even done in case the PCM format is u8.Yet in case of 8/16 bit samples, only the lower 8/16 bit of the predicition
values are ever used, so one can just as well just use unsigned and
remove the sign extensions. This is what this commit does.For GCC 9 the time for one call to smka_decode_frame() for the sample from
ticket #2425 decreased from 1709043 to 1693619 decicycles ; for Clang 9
it went up from 1355273 to 1369089 decicycles.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
avcodec/bitstream : Consistently treat symbol as VLC_TYPE
26 octobre 2020, par Andreas Rheinhardtavcodec/bitstream : Consistently treat symbol as VLC_TYPE
If a static VLC table gets initialized a second time (or concurrently by
two threads) and if said VLC table uses symbols that have the sign bit
of VLC_TYPE (a typedef for int16_t) set, initializing the VLC fails. The
reason is that the type of the symbol in the temporary array is an
uint16_t and so comparing it to the symbol read from the VLC table will
fail, because only the lower 16bits coincide. Said failure triggers an
assert.Reviewed-by : Lynne <dev@lynne.ee>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
FFmpeg - Save %{pts\:hms} in %variable% for saving as environment variable
29 novembre 2020, par cmd_kevinAfter closing a video in ffplay I want that the last timestamp will saved as a value of an environment variable.


To show the current timestamp in the playback window, I can use :


ffplay -vf "drawtext=text='%{pts\:hms}'" input.mp4



So there is a variable (
%{pts\:hms}
) for my purposes.

To change the value of a variable (in my case
%variable01%
), I used :

SET variable01=value



To change the environment variable with
%variable01%
, I used :SETX environment_variable_01 %variable01%
.

My problem is that I can't use
%{pts\:hms}
to define%variable01%
andecho %{pts\:hms}
orSETX environment_variable_01 %{pts\:hms}
didn't work.

So I'm trying to transfer the
%{pts\:hms}
value to%variable01%
but all of my attempts failed.

What can I do to solve my problem ?


I want this environment value to continue a video at the timestamp I closed ffplay and the command prompt.


Edit1 : I have used search facility but I didn't find an answer, especially to this specific syntax with only one percent sign
%{pts\:hms}
.

Here's my reproducible example :

ffplay -vf "drawtext=text='%{pts\:hms}'" input.mp4 & echo %{pts:hms}

Answer :%{pts\:hms}
.

I also tried :


ffplay -vf "drawtext=text='%{pts\:hms}'" input.mp4 & SET variable01=%{pts\:hms}



but the answer with


echo %variable01%



is


%{pts\:hms}.



Changing to
%{pts\:hms}%
didn't work too. The answer of echo is%{pts\:hms}%
.