
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 (111)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10090)
-
Android video encoding with fr and resolution manipulation
24 février 2017, par apSTRKI want to be able to take a video recorded with an Android device and encode it to a new Resolution and Frame Rate using my app. The purpose is to upload a much smaller version of the original video (in size), since this will be videos 30 min long or more.
So far, I’ve read of people saying FFmpeg is they way to go. However, the documentation seems to be lacking.
I have also considered using http opencv http://opencv.org/platforms/android.html
Considering I need to manipulate the video resolution and frame rate, which tool do you think can do such things better ? Are there any other technologies to consider ?
An important question is, since this will be long videos, is it reasonable to do the encoding in an android device (Consider power resources, time, etc.)
Thanks in advance !
-
How to put watermak on video with FFMPEG,without resizing the watermark because of video resolution ?
22 mai 2014, par Shahbaz YounisI’m looking for a way that the watermark picture does not get resized,if the video resolution is high or less. Right now I have this problem, if I upload a video like 720p the watermark is really small and when I upload a video that is 240p the watermark is really big. I would just like it to be only one size. Can it do that automatically ? So no matter what the resolution is the of the video the image does not resizes and stays where I put it ? Here’s the code I’m using right now
if ($ffmpeg_ver == "old") {
$watermark = '-vf "movie='.$tv_logo_path.' [watermark]; [in][watermark] overlay=10:10 [out]" ';
} else {
$watermark = '-i '.$tv_logo_path.' -filter_complex "overlay=10:10" ';
} -
batch converting in ffmpeg from jgp to gif while changing the resolution
15 janvier 2018, par zlboothHi this is my first post - excuse how basic it is !
I’ve got a line for batch converting jpg to gif in Mac
for i in *.JPG; do
ffmpeg -i "$i" "${i%.*}.gif"
doneThis line is from Lord Neckbeard’s answer to this post. How do you convert an entire directory with ffmpeg ?
I just want to add one more parameter which is batch converting the resolution as well as the file type.
inputting this doesn’t work :for i in *.JPG; do
ffmpeg -i "$i" -s:v 640x480 "${i%.*}.gif"
doneAny solutions much appreciated !