Recherche avancée

Médias (91)

Autres articles (55)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6338)

  • make : $LD_RUN_PATH is ignored

    26 juillet 2012, par htoip

    I'm compiling FFmpeg from source.

    ./configure --enable-shared --enable-gpl --enable-version3 --enable-nonfree --enable-x11grab --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libx264
    make
    make install

    ldd /usr/local/bin/ffmpeg gave me this

    linux-gate.so.1 =>  (0xb7717000)
    libavdevice.so.53 => not found
    libavfilter.so.2 => not found
    libavformat.so.54 => not found
    libavcodec.so.54 => not found
    libpostproc.so.52 => not found
    libswresample.so.0 => not found
    libswscale.so.2 => not found
    libavutil.so.51 => not found
    libm.so.6 => /lib/i386-linux-gnu/tls/i686/nosegneg/libm.so.6 (0xb76e3000)
    libpthread.so.0 => /lib/i386-linux-gnu/tls/i686/nosegneg/libpthread.so.0 (0xb76ca000)
    libc.so.6 => /lib/i386-linux-gnu/tls/i686/nosegneg/libc.so.6 (0xb7569000)
    /lib/ld-linux.so.2 (0xb7718000)

    Setting $LD_LIBRARY_PATH to /usr/local/lib corrected the "not found" errors, but for the reasons mentioned here, I don't want to set $LD_LIBRARY_PATH permanantly.

    I recomiled with the same commands, this time with $LD_RUN_PATH set to /usr/local/lib.
    make seem to have ignored $LD_RUN_PATH when compiling.

    Is there a way to use $LD_RUN_PATH without making extensive changes to the Makefile ?

  • ffmpeg how to make same streams for videos

    30 septembre 2022, par bogdaryan

    The documentation says that

    


    


    All files must have the same streams (same codecs, same time base,
etc.)

    


    


    I tried this, I thought it would help to make the same streams for all videos

    


    ffmpeg -i 1.mp4 -i 2.mp4 -i 3.mp4 -filter_complex "[0]setdar=16/9[a];[1]setdar=16/9[b];[2]setdar=16/9[c]; [a][b][c]concat=n=3:v=1:a=1" output.mp4


    


    Is there any way to make all video the same streams to do then by the method with txt file ?

    


    ffmpeg -f concat -safe 0 -i mylist.txt -c copy mergedVideo.mp4 


    


    It would be very convenient, first do the conversion in one stream all the videos, then take their paths and combine. Just if I immediately do concat through the method with txt, some parts of the video just freezes the screen. I read, and they said to do same streams (same codecs, same time base, etc.)

    


  • Revision 62da0bf162 : Make reset_frame_context an enum. In vp9, [0] and [1] had identical meaning, so

    8 septembre 2015, par Ronald S. Bultje

    Changed Paths :
     Modify /vp10/common/entropymode.c


     Modify /vp10/common/onyxc_int.h


     Modify /vp10/decoder/decodeframe.c


     Modify /vp10/encoder/bitstream.c


     Modify /vp10/encoder/encoder.c



    Make reset_frame_context an enum.

    In vp9, [0] and [1] had identical meaning, so merge them into a
    single value. Make it impossible to code RESET_FRAME_CONTEXT_NONE
    for intra_only frames, since that is a non-sensical combination.

    See issue 1030.

    Change-Id : If450c74162d35ca63a9d279beaa53ff9cdd6612b