
Recherche avancée
Autres articles (77)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (6714)
-
Maximum MOV file supported audio / video length
27 octobre 2020, par AKHILASH TPThanks in advance.


We use libav for MOV muxing. Below is the audio and video format used. Can you help us with our questions ?


Video format - h264
Audio format - 4 channel, 24bit, 48KHz PCM


Queries :


- 

- Can you please guide us to find the maximum length supported for a MOV file ?
- Does libav have any specific limitation related to the maximum duration for muxing a MOV file ?






-
avformat/mca : clip timestamp when seeking into acceptable range
10 septembre 2020, par Paul B Mahol -
How to create bash script with ffmpeg to flip a dir of vids 180, then stitch together without losing vid length
25 septembre 2022, par Maude Rozencrance's CatI'm trying to make a bash script in linux to flip a bunch of AVI files 180 degrees, then stitch them together without losing the length of the vids. My code works, but it truncates each vid and makes 60 10sec vids, which should be 600 seconds of video, down to about 11 seconds.


I removed the transpose to flip the vids and now I'm getting the correct vid length. So it works, but I have to flip the vid in the video player.


>videos.txt

files=DSCF*.AVI

for f in $files
do
 #make list of vids, copy to videos.txt
 echo "file '$f'" >> videos.txt;
 echo "duration 10.0" >> videos.txt;
 
done

#stitch all vids together
ffmpeg -f concat -safe 0 -i videos.txt -c copy bigvid.AVI