
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (40)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
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.
Sur d’autres sites (4938)
-
ffmpeg dont work in php shell_exec("ffmpeg -i $movie $pic &")
26 septembre 2016, par josefI’m running the following script without any problems :
<?php
echo $video = dirname(__FILE__)."\\MOVIES\\1.mp4";
echo "<br />";
echo $pic = dirname(__FILE__)."\\PICTURES\\1.jpg";
echo shell_exec("ffmpeg -i $video $pic &");But when I run this one i get nothing :
echo shell_exec("ffmpeg -i C:\xampp\htdocs\Video-share-script\MOVIES\1.mp4 C:\xampp\htdocs\Video-share-script\PICTURES\1.jpg &");
the value of $video is C :\xampp\htdocs\Video-share-script\MOVIES\1.mp4
and $pic is C :\xampp\htdocs\Video-share-script\PICTURES\1.jpg
thank you -
Python - saving movie with ffmpeg - alternative syntax
12 octobre 2016, par HonigdachsI want to save a real time plot using ffmpeg using a common python syntax below :
with writer.saving(fig, "anim.mp4", 100):
...
...
writer.grab_frame()Question : Is there an alternative way like possible for saving file in python ?
Instead of using the code above, similar to :
with open('Failed.py', 'w') as file:
file.write('whatever')I would like to use for saving the movie something similar to :
file = open('Failed.py', 'w')
file.write('whatever')
file.close() -
recompiling audio from a movie source
4 novembre 2016, par jkushnerIs it possible to recompile movie files to re-stream the audio so they all have the same volume level ? We’ve got users submitting videos and to me it seems some are higher in volume whereas others are not, and they all have the same volume level on the controls, and i’d like to standardize this so all movie files have the same volume levels.
I was thinking of
ffmpeg
although I only have novice knowledge of this technology and haven’t done my research in it yet.Anyway if there’s anything available I’d love to know.
Thanks !