
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (65)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...)
Sur d’autres sites (7757)
-
FFmpeg disassemble video into parts [migrated]
1er février 2017, par J.AlanHow can I disassemble a video into parts with given timecodes, so far I tried this :
ffmpeg -v quiet -y -i test.m2v -vcodec copy -acodec copy -ss 00:01:12 -t 00:04:21 -sn part1.m2v
But somehow the video has a length of over
6
minutes, whereas it shall have a length of00:03:09 (00:04:21 - 00:01:12)
.What am I doing wrong
Edit :
If I do the same command with the start time of
00:00:00
like this :ffmpeg -v quiet -y -i test.m2v -vcodec copy -acodec copy -ss 00:00:00 -t 00:01:21 -sn part1.m2v
It creates me a correct output.
-
Can ffmpeg extract multiple parts of a video file in a single command ?
18 décembre 2020, par rcliaoI have some huge MPEG files that is 24 hours long, and I need to extract a few parts (about 30 minutes each) of it into frame sequences (still images). I tried using commands like following :


ffmpeg -i input.mpeg -ss 4:00:00 -to 4:30:00 outpath1\%05d.png
ffmpeg -i input.mpeg -ss 6:00:00 -to 6:30:00 outpath2\%05d.png
...



But it seems that each time it is executed, ffmpeg scans the file from the beginning, causing the process to be very slow.


For example, when I execute the above commands to extract the part of 4:00:00-4:30:00, ffmpeg will scan from 0:00:00 to 4:00:00, start extracting the image sequence, and stop at 4:30:00 ; and then I execute another command to extract the part of 6:00:00-6:30:00, and ffmpeg scans from 0:00:00 again to 6:00:00, and then start extracting.


So I wanted to simplify this process to save time. Is there a way to extract multiple parts in a single command ? Like scans from 0:00:00 to 4:00:00, start extracting to 4:30:00, stop extracting and continue scanning to 6:00:00, and start extracting again...until the last part. Can ffmpeg do this ?


-
MAINTAINERS : Mark parts from Ludmila as unmaintained
31 août 2024, par Michael Niedermayer