Recherche avancée

Médias (91)

Autres articles (71)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (9533)

  • Pipe ffmpeg stream to sox rec [closed]

    8 novembre 2023, par Red-Tune-84

    I am reading an audio stream via ffpmeg like this :

    



    ffmpeg -i http://icecast.radiovox.org:8000/live.ogg -f mp3 filename

    



    and want to pipe it to a sox command :

    



    rec filename rate 32k silence 1 0.1 3% 1 3.0 3%.

    



    Ultimately, what I am trying to achieve, is to record the audio from a live Icecast stream of a talk show. I only want recordings though of the individual's speaking. Everytime there is silence, I want to stop the recording and start a new one once they start speaking again.

    


  • ffmpeg seems to be capping my output

    11 septembre 2012, par Kurt Spindler

    I'm trying to extract individual frames from a video.

    ffmpeg -i face_source.wmv face_sourceframes/image%03d.jpg

    is almost working just fine. The first six or so appear perfect (have roughly 30kB file size), but then they continuously degrade (e.g. 23kB, 17kB, etc.) until all frames are 11kB. Of course, these frames are pixelated and not desired.

    I tried forcing a bitrate with the -b option. ffmpeg tells me this about the inupt video :

     Duration: 00:00:10.07, start: 0.000000, bitrate: 781 kb/s

    So I set bitrate, first using -b 781k, and then, just to be safe, also tried doubling it, to -b 1562k. Neither of these options made any apparent difference in the output.

    Any help would be appreciated ! Thank you !

  • lavc : add a header for internal generic-layer APIs

    20 juin 2023, par Anton Khirnov
    lavc : add a header for internal generic-layer APIs
    

    The goal is to distinguish between APIs provided by the generic layer to
    individual codecs and APIs internal to the generic layer.

    Start by moving ff_decode,encode_receive_frame() and
    ff_decode,encode_preinit() into this new header, as those functions
    are called from generic code and should not be visible to individual
    codecs.

    • [DH] libavcodec/avcodec.c
    • [DH] libavcodec/avcodec_internal.h
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/decode.h
    • [DH] libavcodec/encode.c
    • [DH] libavcodec/encode.h