
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (106)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
Sur d’autres sites (7104)
-
aacenc : Implement dummy channel group analysis that just calls the single channel...
19 mai 2011, par Nathan Caldwellaacenc : Implement dummy channel group analysis that just calls the single channel...
-
How do I use ffmpeg to create an audio-synced cut from a single file ?
1er octobre 2017, par AlaShibanI have 1 large file (lets call it test.mp4), and I’d like to create a new file (out.mp4) that takes 3 segments that are 1 second apart :
Seg1: 00:01:00 - 00:02:00
Seg2: 00:03:00 - 00:04:00
Seg3: 00:06:00 - 00:07:00And merge them into out.mp4
I’ve tried various concat filters, or using the textfile.txt with instructions in it :
file file-1.wav
duration 20.0But various methods produce glitchy video with the x264 codec (green artifacts, choppy out-of-sync audio)
Cutting each segment into its own file and then merging is not applicable because that approach would produce thousands of files and seems quite slow processing wise.
Does anyone have thoughts on how this can be done properly with ffmpeg ? Is there an alternative API/CLI tool I could use thats known to work better for these cases ?
-
How to create a panning video with a specific duration from a single panoramic image using ffmpeg
4 janvier 2019, par IntrospectreI have a panoramic landscape image (30000x1025) generated using
sox input.flac -n remix 2 spectrogram -r -l -x 30000 -y 1030 -o output.png
. I’d like to use ffmpeg to create a panning video of this spectrogram and I’d like it to match the exact length of input.flac. I’ve tried variations offfmpeg -loop 1 -r 60 -i input.png -vf crop=1822:1025:n:0 -frames:v 20000 output.mkv
, alternating the frame rate (30-60
) and total frame count (10000-60000
) to get a video of the exact length of the audio, but this has yet to yield the correct panning duration inoutput.mkv
. To clarify, I’m having a problem with video overflow/underflow : either the video ends before panning the entire spectrogram or it runs off for some time after the image comes to an end.What I can’t calculate are the number of frames being panned from the original image. If the original image is split evenly on the x axis there should be a total of 16.46 slices measuring
1822x1025
. So how do I tell ffmpeg to panx
frames/second per image slice ? Ifinput.flac
is 306 seconds, how do I instruct ffmpeg to take exactly 18.59 (306/16.46) seconds to pan each image slice ?Note that I’m not aiming to trim the video overflow and scaling the result using
setpts
afterwords. I’ve tried this and while it does work it has also produced certain unintended visual artifacts. I’d like to solve this issue with a single straightforward command or set of commands ; without unecessary re-encoding, if at all possible.If there’s a simpler solution that doesn’t involve ffmpeg, I’d be open to learning about that as well.