
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (73)
-
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 (...) -
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 (...)
Sur d’autres sites (6774)
-
Revision 8783a8a97c : Refactor transform block loop for inter mode decoding Rework the inter mode tra
8 juillet 2015, par Jingning HanChanged Paths :
Modify /vp9/decoder/vp9_decodeframe.c
Refactor transform block loop for inter mode decodingRework the inter mode transform block decoding loop. Replace the
block index with the row and col index as the input argument. It
saves function call to compute the row and col index according to
the block index and overall block size, and many if statements
associated with the transform block position relative to the coding
block. For the test bit-stream pedestrian_area 1080p at 5 Mbps,
the decoding speed goes up from 81.13 fps to 81.92 fps.Note that the intra coded block decoding needs more refactoring
work than the inter ones. So keep it using foreach_transforme_block
as for now.Change-Id : I5622bdae7be28ed5af96693274057f55ba9b4fb4
-
ffmpeg : Text rendered in a box with alignment
15 novembre 2019, par HemanthI’m trying to render text onto a video, using the drawtext option. I would like it to appear in a box of a certain dimension (smaller than the video dimensions). For example, if the video is of size 480x360, I would like to render text in a box of 100x100.
I need this text to be justify aligned (both the left and right margins should be aligned).
Is there some option in ffmpeg to do this ? If not, is there some open source library that can achieve the same ?
-
Using FFMpeg to concat, overlay and add text
2 avril 2015, par Jean-Philippe EncausseFFMpeg is really powerfull and cross-platform. Is it also faster than code ?
I’d like to perform the following task in one pass :
- Take a file F1.avi ... FN.avi
- Add a Text overlay T1 ... TN
- Add an overlay image
- Concat all these files in Fout.avi
Is it possible to do all these things in one shot ?
- It seems complicated to write a text according to a given file
I Write a little C# application using a JSON Config but would love a clean FFMpeg option.