
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 (85)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (16563)
-
FFMEPG:Why does the video sound become smaller when I use pictures and wavs to compose a video, and there is less audio at the beginning of the video ?
13 novembre 2022, par Naldo hwangffmpeg.exe -r 10 -loop 1 -i 5197.jpg -i audio5197.wav -c:v libx264 -x264-params keyint=1:scenecut=0 -c:a aac -b:a 32k -pix_fmt yuvj420p -shortest out.mp4


I'm trying to make a video with a picture and 7 hours of wav,There is always a few seconds less audio at the beginning of the video, and the sound becomes smaller.


Thanks for reading and help.


-
How to implement FFMEG library for android video streaming
10 mai 2014, par KabirI am trying to create online streaming video player in android.
I am trying to compile theappunite/AndroidFFmpeg
library for android application to playHLS videos
online. I am usinglinux-ubuntu OS
I also have set theNDK path
.
I have executed all command one by one given on the link :But when I executed the following script :
./build_android.sh
I got the following error :
abi-gcc —sysroot=/home/singsys-063/android-ndk-r9d/platforms/android-5/arch-arm/
checking whether the C compiler works... no
configure : error : in
/home/singsys-063/AndroidFFmpeg/FFmpegLibrary/jni/vo-amrwbenc :
configure : error : C compiler cannot create executables
See config.log for more details -
how to use the H264 video encoder with ffmpeg / opencv2 ?
30 août 2023, par VinceI am on ubuntu 22.04.


I installed ffmpeg with apt.


I am creating a video from some image files using python/opencv2 (installed via pip)


When I use :


cv2.VideoWriter_fourcc(*"mp4v")



the video is successfully created, but is not supported by firefox.


I read online that the H264 encoder would be a better fit for web-browsers supports.


ffmpeg -codecs | grep h264 



shows :




DEV.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders : h264 h264_v4l2m2m h264_qsv h264_cuvid ) (encoders : libx264 libx264rgb h264_nvenc h264_omx h264_qsv h264_v4l2m2m h264_vaapi nvenc nvenc_h264 )




but


cv2.VideoWriter_fourcc(*"h264")



results in :




OpenCV : FFMPEG : tag 0x34363268/'h264' is not supported with codec id 27 and format 'mp4 / MP4 (MPEG-4 Part 14)'




I could not find online what was wrong (h264 is not installed, how to install it ? the 'fourcc' of h264 is not 'h264' ? I should not create a *.mp4 file ?)