
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (73)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (8691)
-
How to set x264 encode parameters through ffmpeg AVCodecContext
7 juillet 2021, par songqiI'm trying to use ffmpeg/libx264 to encode and transmit a real-time video, when I use
av_dict_set(&opts, "tune", "zerolatency", 0);
the system works well. As the X264 encode parameters are set by ffmpeg usingav_dict_set
, for some research purpose I want to change them by myself. But some parameters inx264_param_t
can not correspond to those parameters inAVCodecContext
, such asvfr_input
. So I want to know if there is a directly way to transmit parameters into X264 encoder when using libx264 in ffmpeg.


Can anyone help me ? Thanks


-
Rewind problem after convert *.mp3 to *.aac
29 août 2020, par Vitaly VesyolkoI need to prepare audio files in MP3 format for sending via WhatsApp to Android and iOS devices with the ability to pause and mainly rewind.


To do this, I use the ffmpeg utility on my notebook with Linux Ubuntu installed. Conversion example is described in detail here FFmpeg command to convert MP3 to AAC.


As a result, I get AAC audio files that cannot be rewound in the WhatsApp player. I tried to set different options that are responsible for the output sound quality, size, and so on. But the ability to rewind in the WhatsApp player disappears.


Rewind - is to slide by finger the circular slider in the WhatsApp audio player widget.


I also used the following online services :


- 

- ONLINE-CONVERT
- Convertio
- ZAMZAR.








One of the first two in some cases saves files with the ability to rewind, but in most cases - without it. And it very likely depends on the original file size. This is a hypothesis - if the size is small, then it is possible to rewind the audio file in the WhatsApp player. In any case, this method is not universal.


Please provide a universal solution to the task at hand - a CLI utility or a tool that would convert MP3 to AAC with the ability to rewind in the WhatsApp player. And please indicate which characteristics are responsible for the absence / presence of such functionality.


-
Is there a way to automate / script video editing with python ?
20 août 2020, par user2436057I do have the problem that I have to generate a daily video file for an information screen.


I need to be able to create a video with preferably a python script that goes over all images in a directory and display each image for 10 seconds while scrolling corresponding text next to it and then display the next image. I might also have to have the ability to add a sound file or background music in the future.


I have looked at ffmpeg and it has some ability to do what I want but I thought there might be a better way or tool I could use. Since ffmpeg takes a lot of steps and its really hacky.


I am able to code the python myself I just need some API or library to handle the video processing.


Not 100% this is the right place to ask.