
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (75)
-
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 (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (9908)
-
How to Capture the Desktop and System Sounds using FFMPEG and C ?
3 décembre 2014, par CaptainObviousI’m new to multimedia programming, but have lots of experience in programming in C in general. I want to develop my own program to capture( record ) the desktop and save it to a youtube compatible file using the ffmpeg API. Due to my inexperience in the multimedia field, I don’t know where to start looking in the ffmpeg API for such a function or the terminology commonly used to refer to such functionality. I’ve tried googling to see if I could find any examples or tutorials or how to use ffmpeg to do something similar to this, but I have found nothing except the ways it can be done using the pre-compiled programs on the command line. The only tutorial I have found relating to ffmpeg and C was Dranger’s tutorial, but that only covers how to make a simple video player. Can someone provide an example or direct me to the correct line of API calls in order to implement such a program ?
-
ffplay : introduce key repeats
26 septembre 2015, par Ganesh Ajjanagaddeffplay : introduce key repeats
Key repeats have been introduced simply because they improve usability in my
experience for volume, brightness, and other such controls by speeding up the
time taken to go from 0 to max intensity. As a side benefit, this enables rapid
seeking through a file via left/right keys.Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by : Marton Balint <cus@passwd.hu> -
Capture video using FFMPEG without frozen image effect
27 juillet 2020, par NehemiaAnyone could help me ? Have been trying to record video from an RTSP server using FFMPEG but somehow the video result has many frozen images (couldn't be used for any people detection) - the people look similar to this :




Here is the code I used :





ffmpeg -i rtsp ://10.10.10.10/encoder1 -b:v 1024k -s 640x480 -an -t 60 -r 12.5 output.mp4





What I have done so far ?
- Recorded the video in smaller dimension instead of original one
- No audio and lower FPS
- Even only record from two IP sources on a machine



But still didn't get any luck yet. Anyone ever experience this ?