Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9526)

  • How do I concat two video mp4 files, each of which has an audio of different sample rates with ffmpeg

    14 août 2020, par Geo

    I have two videos : video1.mp4 and video2.mp4 in the configured txt file, both videos have mp3 audios :
video1.mp4 has : Audio : mp3, 32000 Hz, mono, fltp, 48 kb/s
video2.mp4 has : Audio : mp3, 24000 Hz, mono, fltp, 32 kb/s
I need to keep the different sample rates since I need to change the pitch to make it sound different from the real voice of the person, now I tried to merge the two videos by concatenating them :

    


    ffmpeg -safe 0 -f concat -segment_time_metadata 1 -i videoconf.txt -vf select=concatdec_select -af aselect=concatdec_select,aresample=async=1 -y videoout.mp4

    


    but I got a lot of errors like these :

    


    [aac @ 0x730e491e00] channel element 2.12 is not allocated

    


    index.js:81 Error while decoding stream #0:1 : Invalid data found when processing input

    


    index.js:81 [aac @ 0x730e491e00] TYPE_FIL : Input buffer exhausted before END element found

    


    index.js:81 Error while decoding stream #0:1 : Invalid data found when processing input

    


    ......

    


    So how can I concatenate multiple videos with different audio sample rates inside each video ?
By the way, when the sample rates are the same for all the audios inside each video, the concat works like a charm.

    


    Thanks

    


  • lavf/movenc : allow writing avc3 sample entry type

    15 novembre 2017, par John Stebbins
    lavf/movenc : allow writing avc3 sample entry type
    

    The avc3 sample entry type is useful for adaptive streaming. It permits
    parameter sets to be written inline in the video stream.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
  • Download multiple files with ffmpeg, keep one stream from each (according to default stream selection), and then mux them into single file ?

    23 août 2021, par Bernard

    With ffmpeg, I can download m3u8 streams with the following command :

    &#xA;

    ffmpeg -i http://example.com/test.m3u8 -c copy output.mp4&#xA;

    &#xA;

    The above command will keep the best quality video and audio (to some definition of 'best').

    &#xA;

    However, I'm faced with a situation where I have several m3u8 streams, all of them possibly containing zero or more video or audio streams. I would like to take at most one video and audio from each url (according to ffmpeg's definition of 'best'), and mux them together into the final mp4 file.

    &#xA;

    This is essentially what I want :

    &#xA;

    ffmpeg -i http://example.com/test0.m3u8 -c copy output0.mp4&#xA;ffmpeg -i http://example.com/test1.m3u8 -c copy output1.mp4&#xA;ffmpeg -i http://example.com/test2.m3u8 -c copy output2.mp4&#xA;ffmpeg -i output0.mp4 -i output1.mp4 -i output2.mp4 -map 0 -map 1 -map 2 -c copy output.mp4&#xA;

    &#xA;

    Is there any way to do it without the temporary files ?

    &#xA;