
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (72)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (4437)
-
FFpmeg attaching album cover to the audio is not working with Rails
10 avril 2015, par Shilpi AgrawalI have some audio files of web format and i want to attach some album cover to those files. My native ffmpeg command works fine in terminal.
ffmpeg -i audio.webm -i cover.jpg -map 0:0 -map 1:0 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3
But when i run the same command in my rails app, its telling me this error :
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument
.Any suggestions ?
-
How to convert video programmatically using ffmpeg
1er août 2018, par JasonStackMost applications of ffmpeg both in terminal and code seem to be passing ffmpeg commands to the ffmpeg library with specific parameters. For example, you might run the following command to get an overlayed gif out of a video input and a png input :
-i i.mp4 -i me.png -filter_complex 'overlay' -pix_fmt yuv420p -c:a copy output.gif
Is it possible to work with the library without using commands and only programmatically ? For example, by creating an FFmpeg object, passing it relevant parameters and then reading the output file from a specific directory, preferrably using C++ or Java.
-
ffmpeg : How do I create a 1 second video of 23 frames ?
8 septembre 2022, par Sprout CoderI have 23 frames :


frame-1.png
frame-2.png
....
..
frame-23.png



Each frame is 15840PX x 15840PX and around 240Mb in size.


I'm trying :


ffmpeg -r 23 -i "frame-%d.png" -c:v libx265 -r 23 out.mp4



and what I get in the end is a 12Mb video of 00:00 duration with no image


Also, right before the command completes execution (it takes quite some time obviously) I get :


[1] 12580 killed ffmpeg -r 23 -i "frame-%d.png" -c:v libx265 -r 23 out.mp4x



on the terminal.


I don't know if that means it failed or whether it's a normal log after completion.


Is my command wrong or is it impossible to execute due to the size of each frame ?


Thank you in advance for your help