
Recherche avancée
Autres articles (111)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (5785)
-
Extract multiple thumbnails in a batch with ffmpeg ?
15 mai 2016, par JulianJI have a text file of frame numbers. Is there a way using ffmpeg to extract a batch load of thumbnails from a video file using the text file all at once.
The code below extracts a single frame( frame 100 in this case) from a video file
ffmpeg -i in_video.avi -vf "select=gte(n\,100)" -vframes 1 out_img.png
-
Why isn't my bash script working ?
15 mai 2016, par JulianJI’m trying to get this bash script to work but am at a loss. I have a text file that contains a list of frame numbers line by line. ffmpeg reports the error :
Undefined constant or missing '(' in '$name)'
The script
#!/bin/bash
source text.txt
while read name
do
ffmpeg -i result.mp4 -vf "setpts=N+1,select='eq(n,\$name)'" -vframes 1 frame-$i.jpg
done code> -
Why is my bash script halting with ffmpeg ?
16 mai 2016, par JulianJI have a text file that contains frame numbers line by line and I am using a bash script and ffmpeg to cycle through each line and attempt to print out a thumbnail of each frame.
Each time I run the bash script in my terminal it halts with an error having created the first thumbnail. It seems it is not given the thumbnail a unique name. What am I doing wrong ?
My bash script :
#!/bin/bash
source text.txt
while read name
do
ffmpeg -i result.mp4 -vf "setpts=N+1,select='eq(n,$name)'" -vframes 1 frames-$i.jpg
done code>The error :
File 'frames-.jpg' already exists. Overwrite ? [y/N] Not overwriting - exiting