
Recherche avancée
Autres articles (28)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (5255)
-
ffmpeg ignores -metadata option when video is encoded
30 octobre 2018, par Rafael LimaI have a video with the following metadata :
rotate : 90
I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.
If I do :
ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
the output will have removed the metadata.But if I do :
ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
then I still have the undesired metadata.Is there a way to remove metadata while encoding ?
-
ffmpeg ignores -metadata option when video is encoded
30 octobre 2018, par Rafael LimaI have a video with the following metadata :
rotate : 90
I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.
If I do :
ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
the output will have removed the metadata.But if I do :
ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
then I still have the undesired metadata.Is there a way to remove metadata while encoding ?
-
What are these strange strings in complied FFmpeg binary files ?
4 septembre 2018, par greagenI am learning compilers recently and compile FFmpeg-1.0.10 source downloaded from official website to binary files on macOS 10.13.6. I use command "strings" to display the printable strings in the binaries. But there are some strange strings that do not exit in source files. Some examples of the strings are as following :
IMAS
TXTR
VbuS
...
theora
vorbis
'hb7=
... {next three examples start with whitespace character}
(8H8h8
h8H8(8
8!8"8
...
$h%h&h
$X%X&X
$X%X&X
...What are those strings ?
When and where they came from ?
What are they used for ?
How can I distinguish these strange strings with strings constants in source code ?