Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (5757)

  • FFMPEG change Tone Frequency (Pitch Audio)

    16 septembre 2022, par dazzafact

    How can I change the Tone frequency.
This Example only pitches it by keeping the old tone frequency and only decrease the length of File.

    


    For Example, I have a constant 100 Herz tone (as mp3) and I want it to change 90 Herz

    


     ffmpeg -i 100h.mp3 -af atempo=100/90 90h.mp3


    


    This Example doesn't work for me, it sounds the same

    


    inputfile Mp3
    
outputfile Mp3

    


  • Using FFMPEG To Fill in Gaps of a Raw Audio UDP Stream

    14 février 2020, par Wallace

    I have a software defined radio (SDR) that picks up audio from emergency services and with the help of software, streams raw audio using UDP. The audio is PCM signed 16-bit little-endian. The UDP stream is also not constant and only has data when audio is detected.

    The problem I’m trying to solve is that I would like the gaps in recorded audio to be filled with silent or Null audio. Below are just a couple of my attempts at resolving this :

    1. ffmpeg -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -af aresample=async=1 -acodec libmp3lame -
      f rtp rtp ://127.0.0.1:1234
    2. ffmpeg -re -f lavfi -i anullsrc -f s16le -ar 8000 -i udp ://127.0.0.1:23456 -filter_complex
      amix=inputs=2:duration=first -acodec libmp3lame -f rtp rtp ://127.0.0.1:1234

    I guess my questions are regarding the best way to resolve this and whether or not ffmpeg can be used in a way to accomplish this ?

  • the number of frames in ts file

    12 juin 2017, par j.teak

    i got video data from my web camera, and using ffmpeg to make ts, m3u8

    but ts what made by ffmpeg, each ts has different the number of frames.

    so, how can i make the number of frames equally ?

    and each gop size in ts are also different..

    how can i make gop size is constant ?

    avformat_alloc_output_context2(&ptr->hls_ctx, NULL, "hls", "hls.m3u8");
    ((HLSContext*)ptr->hls_ctx->priv_data)->flags = HLS_DELETE_SEGMENTS | HLS_ROUND_DURATIONS;
    ((HLSContext*)ptr->hls_ctx->priv_data)->max_nb_segments = 2;
    ((HLSContext*)ptr->hls_ctx->priv_data)->time = 2;

    i already use time parameter for setting ts’s play time