
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (35)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (5759)
-
Is it Possible To hide an information in a Image and convert it to video and decrypt it back with FFMPEG
16 février 2014, par IvanI am doing my project with the help of ffmpeg. I initially convert a video file in to images and hide some information in one of the images and convert it back to video. and in the receiver side the user should again convert the video containing the encrypted message in to images and get back the information from the image in which we have previously hided the information.
I have done all these but after convert the encrypted image into video and then i convert back to image i am not able to get the hidden information from the converted image...How do i do this. Is there any way to hide infor mation in a image other than this...
-
Bring back support for CommonJS
19 juin 2018, par bbc2Bring back support for CommonJS
Browserify, which follows CommonJS module conventions, parses the AST
for `require` calls to determine the dependencies of a project.jQuery File Upload used to support this ; it was removed in
e2cda462610c776a1f7856692c98b1baab02231a when a new version of
jquery.ui.widget.js was vendored. -
FFmpeg - Slow Down Video by Half - Play Back at 2x
2 mars 2021, par nomaamI am working with the newest version of FFmpeg


I am trying to slow down a video with audio by half speed, then play back that video in something like VLC at 2x speed and have the video appear and sound as if it was the original version.


So far I have tried


./ffmpeg.exe -i "ffmpeg/testVideo.mp4" -filter_complex "[0:v]setpts=1.5*PTS[v];[0:a]atempo=0.5[a]" -map "[v]" -map "[a]" "ffmpeg/outputVideo.mp4"



When I play back the video at 2x it isn't close to playing and sounding like the unaltered version.


I have read the documentation but am having difficulty understanding where I am going wrong.