
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (79)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (6568)
-
How to split multiple videos 2.24 seconds before the end
15 décembre 2019, par LeendertI have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.
I want to keep both parts of the video after the split.
So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
It will put the new videos inside of a folder called ’new files’.
The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause
-
Best way to split multi channel audio file in Swift [on hold]
8 mars 2016, par amkaufmanI’m currently working on an iOS project in which I need to be able to split a multi-channel .AAC file. I’m still fairly new to iOS development and Swift and am not sure if the frameworks that I have seen will be able to do this.
So far I have looked into AVFoundation and FFmpeg, but I’m still not sure if they would be able to do this.
After looking into AudioKit’s documentation I am still a bit lost on how to actually split the file into its separate channels. Where exactly should I be looking ?
-
Split a movie so that each GIF is under a certain file size
9 novembre 2014, par Terence EdenProblem
I want to convert a long movie into a series on animated GIFs.
Each GIF needs to be <5MB.
Is there any way to determine how large a GIF will be while it is being encoded ?
Progress So Far
I can split the movie into individual frames :
ffmpeg -i movie.ogv -r 25 frameTemp.%05d.gif
I can then use
convert
from ImageMagick to create GIFs. However, I can’t find a way to determine the likely file size before running the command.Alternatively, I can split the movie into chunks :
ffmpeg -i movie.ogv -vcodec copy -ss 00:00:00 -t 00:20:00 output1.ogv
But I’ve no way of knowing if, when I
convert
the file to a GIF it will be under 5MB.A 10 second scene with a lot of action may be over 5MB (bad !) and a static scene could be under 5MB (not a problem, but not very efficient).
Ideas
I think that what I want to do is convert the entire movie into a GIF, then find a way to split it by file size.
Looking at ImageMagick, I can split a GIF into frames, but I don’t see a way to split it into animated GIFs of a certain size / length.
So, is this possible ?