
Recherche avancée
Autres articles (78)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (7940)
-
Auto overwrite created thumbnail of video file in php
22 janvier 2015, par WinnerI have successfully created thumbnail image of video file but I have some issue.This is my code for creating thumbnail of image :
$ffmpeg = "C:\\ffmpeg\\bin\\ffmpeg";
$videoFile = $_FILES["file"]["tmp_name"];
$imageFile = "1.jpg";
$size = "800x420";
$getFromSecond = 25;
$cmd = "$ffmpeg -i $videoFile -an -ss $getFromSecond -s $size $imageFile";
if(!shell_exec($cmd))
{
echo "Thumbnail Created!";
}
else
{
echo "Error Creating Thumbnail";
}With this code I got result
1.jpg
as given. MY question is that when Second time I create the thumbnail for another video the previous one is replaced.What cant I do for this -
Auto detect rotation and rotate video accordingly with mencoder, handbrake cli or ffmpeg
7 février 2018, par Andrew BarracloughI have found questions on rotating videos with mencoder and ffmpeg however I am after a fully automated solution.
Can anybody help with this.
I want to
- Detect the video orientation
- Rotate if needed
- Reset the meta data on the video (otherwise watching on a iOS device will cause unwanted rotation)
- Save video in desired format
The reason for this is a wish to use the processed videos in a HTML5 video player. If I rotate without resetting the meta data iOS devices will read the meta and further rotate causing the video to be out by another 90 degrees.
-
Auto detect rotation and rotate video accordingly with mencoder, handbrake cli or ffmpeg
29 décembre 2012, par Andrew BarracloughI have found questions on rotating videos with mencoder and ffmpeg however I am after a fully automated solution.
Can anybody help with this.
I want to
- Detect the video orientation
- Rotate if needed
- Reset the meta data on the video (otherwise watching on a iOS device will cause unwanted rotation)
- Save video in desired format
The reason for this is a wish to use the processed videos in a HTML5 video player. If I rotate without resetting the meta data iOS devices will read the meta and further rotate causing the video to be out by another 90 degrees.