
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (64)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6345)
-
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 ?