
Recherche avancée
Autres articles (39)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (4853)
-
Revision 4f660cc018 : Modified mode skip functionality. A previous speed feature skipped modes not us
5 septembre 2013, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Modify /vp9/encoder/vp9_rdopt.c
Modified mode skip functionality.A previous speed feature skipped modes not used in earlier
partitions but this not longer worked as intended following
changes to the partition coding order and in conjunction
with some other speed features (Especially speed 2 and above).This modified mode skip feature sets a mask after the first X
modes have been tested in each partition depending on the
reference frame of the current best case.This patch also makes some changes to the order modes are
tested to fit better with this skip functionality.Initial testing suggests speed and rd hit count improvements
of up to 20% at speed 1. Quality results. (derf -1.9%, std hd +0.23%).Change-Id : Idd8efa656cbc0c28f06d09690984c1f18b1115e1
-
FFmpeg to trim, pause and speed up
4 septembre 2020, par João AbrantesI have a single video and I want to transform it in the following way :


From the beginning of the video until the
end_of_part_1
I want the video to be at 1x speed.
Then I want the frame of the video atend_of_part_1
to be rendered for one second (with silent audio).
From the next frame to theend_of_part_2
I want the video to be played at 2x speed.
From the frame afterend_of_part_2
to the end I want the video to be played at 1x.

What is the best way to achieve this with
FFmpeg
?

-
Is there a way to non-linear speed-up video with ffmpeg ?
3 mars 2020, par leoossaI’ve seen thousands of websites suggesting using setpts to speedup video
ffmpeg -i input.mp4 -filter:v "setpts=0.5*PTS" output.mp4
The thing is - I don’t want to speed-up video in a linear way. I want it to accelerate. So I want ’acceleration’ (Wiki) to be constant and ’speed’ to be growing.
From what I’ve seen on ffmpeg docs setpts can be an equation, I tried to play with PREV_OUTPTS but with no success.
Is it even possible to achieve that with ffmpeg ?