
Recherche avancée
Autres articles (111)
-
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 (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (5300)
-
Maintaining timecode using -ss trim tool
1er février 2016, par Alex NobleI’m currently using this FFMPEG script (using "run shell script" in Automator) on QT ProRes files to strip off the first six channels of audio, pass through for audio and video, and trim the first 6.5 seconds off the beginning of the video :
for f in "$@"
do
/usr/local/bin/ffmpeg -ss 6.5 -i "$f" -c:v copy -map 0:0 -c:a copy -map 0:7 "${f%.*}_ST.mov"
doneWhen I use this script, it successfully trims the file but then moves the original timecode up to the new beginning of the clip. So if 00:59:48:00 was my timecode at the beginning of the original clip, it’s now also the starting timecode of the beginning of my trimmed clip.
My question is how can I trim 6.5 seconds off the beginning while also trimming that same amount of time off my timecode as well ?
So instead of my trimmed clip (let’s say 23.98 fps) starting at
00:59:48:00
, it would start at00:59:54:12
since 6.5 seconds (roughly 156 frames) have been trimmed. -
ffmpeg split avi into frames with known frame rate
5 septembre 2023, par MyxI posted this as comments under this related thread. However, they seem to have gone unnoticed =(



I've used



ffmpeg -i myfile.avi -f image2 image-%05d.bmp




to split
myfile.avi
into frames stored as.bmp
files. It seemed to work except not quite. When recording my video, I recorded at a rate of1000fps
and the video turned out to be2min29sec
long. If my math is correct, that should amount to a total of 149,000 frames for the entire video. However, when I ran


ffmpeg -i myfile.avi -f image2 image-%05d.bmp




I only obtained 4472 files. How can I get the original 149k frames ?



I also tried to convert the frame rate of my original AVI to 1000fps by doing



ffmpeg -i myfile.avi -r 1000 otherfile.avi




but this didn't seem to fix my concern.


-
ffmpeg split avi into frames with known frame rate
31 mai 2016, par MyxI posted this as comments under this related thread. However, they seem to have gone unnoticed =(
I’ve used
ffmpeg -i myfile.avi -f image2 image-%05d.bmp
to split
myfile.avi
into frames stored as.bmp
files. It seemed to work except not quite. When recording my video, I recorded at a rate of1000fps
and the video turned out to be2min29sec
long. If my math is correct, that should amount to a total of 149,000 frames for the entire video. However, when I ranffmpeg -i myfile.avi -f image2 image-%05d.bmp
I only obtained 4472 files. How can I get the original 149k frames ?
I also tried to convert the frame rate of my original AVI to 1000fps by doing
ffmpeg -i myfile.avi -r 1000 otherfile.avi
but this didn’t seem to fix my concern.