Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (84)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7163)

  • How to set sample rate when read frames from ALSA [FFMPEG C/C++]

    26 juin 2023, par Dion

    I'm trying to get audio data from a microphone using ALSA. By default stream has a sampling rate of 44100 Hz, but I need to get 8000 Hz.

    


    Trying to use AVDictionary options for avformat_open_input doesn't change anything.

    


    The code is maximum simplified :

    


    AVFormatContext *format_context = nullptr;
AVInputFormat   *input_format   = nullptr;

avdevice_register_all();

input_format = av_find_input_format("alsa");

AVDictionary* options = NULL;
av_dict_set(&options, "sample_rate", "8000", 0);

int res = avformat_open_input(&format_context, "hw:0", input_format, &options);

if(res < 0)
{
    exit(1);
}

res = avformat_find_stream_info(format_context, 0);

if(res < 0)
{
    exit(1);
}

av_dump_format(format_context, 0, "alsa", 0);


    


    


    Input #0, alsa, from 'alsa' : Duration : N/A, start :
1685994324.766645, bitrate : 1411 kb/s
Stream #0:0 : Audio : pcm_s16le, 44100 Hz, 2 channels, s16, 1411 kb/s

    


    


    Is there probably some way to tell ALSA to output a lower sampling rate ?

    


    Thanks !

    


  • Opencv Vs FFmpeg performance comparision for web cam feed recording

    3 janvier 2017, par Chakri

    I’m working on my academic project in which I’ve to record a video from the webcam.

    In my google search, I’ve found that FFmpeg uses pipelining to record the video from the camera while OpenCV, AVbin use ctypes.

    I don’t know the pros and cons of either method, and wonder if you can help me decide which one to choose to write such kind of program in Linux.

    I need to record 1024x768 30hz video and not experience latency/lag issues. Performance is the high priority.

  • How to Pause and Resume Screen Recording in FFmpeg on Windows ?

    24 mars, par Iman Sajadpur

    I use FFmpeg on Windows to record my screen. I want to pause and resume the recording properly.
I know that pressing Ctrl + S, Pause key on the Keyboard, or suspending FFmpeg via Resource Monitor stops the process, but screen recording conntinues in the background.
Here is an example of the command I use for screen recording :

    


    ffmpeg -f gdigrab -probesize 100M -i desktop -f dshow -channel_layout stereo -i audio="Microphone (2- High Definition Audio Device)" output.mp4

    


    How can I pause recording completely so that no frames are captured during the pause and resume it seamlessly ?