
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (65)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (8317)
-
FFMPEG : audio unsynchronized, losing framerate and strange behavior when pavucontrol is open
10 mars 2021, par Rik FerreiraI'm trying to record my desktop screen with internal audio and mic, but I'm noticing some issues with the output, according to this empirical scale :


- 

- If I record only the desktop, the output is GOOD.
- If I record the desktop + mic, the output is GOOD.
- If I record the desktop + internal audio only, the output is BAD.
- If I record the desktop + mic + internal audio, the output is BAD.
- If I record the desktop + mic + internal audio + open pavucontrol, the output is GOOD.












Good means the two audio sources and the video are acceptably synchronized and bad means not synchronized at all.


I recorded some samples to show what is going on :


- 

- Screen + Mic + Internal audio
- Screen + Mic
- Screen + Mic + Internal audio + pavucontrol








I'm snapping my fingers near the microphone when the
Beep!
message appears along with the sound.

I'm using a simple script to play a sound and show a message in the terminal instead of using pavucontrol because it masks the problem.


FFMPEG call


Although the entire script is visible in the videos, here is the ffmpeg call in plain text :


Dual audio


ffmpeg -y \
 -f x11grab -s 1920x1080 -i :0.0 \
 -f pulse -i 0 \
 -f pulse -i 1 \
 -filter_complex amix=inputs=2 \
 output.mp4



Only microphone


ffmpeg -y \
 -f x11grab -s 1920x1080 -i :0.0 \
 -f pulse -i 1 \
 output.mp4



Other info


SO : Arch Linux


When pavucontrol isn't open,
pacmd list-source-outputs
returns :0 source output(s) available.
, but when pavucontrol is open :

pacmd list-source-outputs | grep source

2 source output(s) available.
 source: 0 
 module-stream-restore.id = "source-output-by-application-id:org.PulseAudio.pavucontrol"
 source: 1 
 module-stream-restore.id = "source-output-by-application-id:org.PulseAudio.pavucontrol"



What am I missing ? Why the ffmpeg works fine when pavucontrol is open ?


-
OpenCV : Cannot open camera with CAP_FFMPEG even though ffmpeg is installed
24 février 2021, par cildiracagimInitializing a camera video capture using CAP_FFMPEG fails even though I have ffmpeg installed :


cv::VideoCapture vcap;
vcap.open(0, cv::CAP_FFMPEG);

// After these, vcap.isOpened() returns false.



However, it works perfectly when I open a file in the same way :


cv::VideoCapture vcap;
vcap.open(argv[1], cv::CAP_FFMPEG);

/* Correctly opens the video file at path argv[1],
vcap.isOpened() returns true. */



The problem occurs in both OpenCV versions installed in my system :
4.5.1
and3.2.0
. Version3.2.0
came installed in my Linux distribution but I have compiled4.5.1
myself. During compilation, I have verified that CMake succesfully recognized the ffmpeg installation in my system. I guess the problem is not related to OpenCV not recognizing ffmpeg since I can open and work on video files without any problems on both OpenCV versions.

Any help is greatly appreciated.


-
ffmpeg : error while loading shared libraries : libmp3lame.so.0 : cannot open shared object file : No such file or directory
17 février 2021, par GetItDoneI am using this buildpack (heroku-python-buildpack-ffmpeg-lame) for my app on heroku that uses ffmpeg to convert uploaded videos to .mp4. I had been using the version without libmp3lame, and since I switched I am getting the error



ffmpeg: error while loading shared libraries: libmp3lame.so.0: cannot open shared object file: No such file or directory




I checked to see where libmp3lame.so.0 is located on my server with heroku run —app myapp find / -name libmp3lame.so.0, and the resulting path was /app/vendor/lame/lib/libmp3lame.so.0. I tried adding /vendor/lame/lib to my heroku path using the heroku config:set command, but even after adding it I still get the same error. Anyone know what the problem could be ?