
Recherche avancée
Autres articles (63)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7927)
-
How do I batch cut videos ? [closed]
12 février 2024, par EngineerJackI've searched for a while on Google, but haven't found a good solution.


I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.


I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.


I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.


ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"


BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.


Anyone who can help me with this, I'd appreciate it.


I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.


-
Range selector for Video trimming
28 février 2019, par VoidMainI am working on a project in which I have to trim a video. But first the user needs to select the video for trimming I have done a little digging around and have failed to find a suitable library. I need to implement just the UI that would let the user select the starting and ending point of the trim.
(I need just the UI the data will be taken from that UI will be used in trimming the video using FFmpeg-android which is working properly)
A library similar to this iOS layout would do the trick.
https://drive.google.com/file/d/15FqIX_Sh1TqBrr2cZdkOka0pCMZ0BcNq/view
Please, do let me know if you have any ideas ? or a better solution for it.
Any help would be appreciated.
Thanks -
Generate a 2-fps mp4 from images using FFMPEG
1er juin 2018, par Kagemand AndersenNeed to create a video from a series of images. The video needs to have a low frame rate. This is the command I use to create the video.
ffmpeg.exe -r 2 -i images/%3d.jpg -vcodec libx264 -pix_fmt yuvj420p output.mp4
The problem is that, while the video works just fine when played through a HTML5 video, it doesn’t really work when the file is downloaded locally and played through either the Windows 10 default video player or even VLC (weirdly, the default video player works better).
Can anyone explain why this is happening and possibly how to fix the issue ?