Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (75)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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, par

    Accé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, par

    PHP 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 CaptainObvious

    I’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 Ajjanagadde
    ffplay : 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>

    • [DH] ffplay.c
  • Capture video using FFMPEG without frozen image effect

    27 juillet 2020, par Nehemia

    Anyone 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 :&#xA;enter image description here

    &#xA;&#xA;

    Here is the code I used :

    &#xA;&#xA;

    &#xA;

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

    &#xA;

    &#xA;&#xA;

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

    &#xA;&#xA;

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

    &#xA;