Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (11341)

  • 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