Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (52)

  • 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

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9231)

  • build ffmpeg with my static lib "undefined reference to" [duplicate]

    7 septembre 2020, par Vassago

    exec

    


    nvcc xtest.cu -c
ar rcs libxtest.a xtest.o


    


    get libxtest.a

    


    dir : /root/work/xtest.cu /root/work/include/xtest.h /root/work/lib/libxtest.a

    


    Then I copy root/work/include/xtest.h root/work/lib/libxtest.a to /root/work/FFmpeg/libavfiler direction
And add my fuc : int test() (which is in xtest.cu) to myfilter.c

    


    next

    


    ./configure \
  --prefix="$HOME/ffmpeg_build" \
  --pkg-config-flags="--static" \
  --extra-cflags="-I/root/work/include" \
  --extra-ldflags="-L/root/work/lib" \
  --extra-libs="-lpthread -lm" \
  --bindir="$HOME/bin" \
  --enable-gpl \
  --enable-gnutls \
  --disable-libaom \
  --enable-libass \
  --disable-libfdk-aac \
  --disable-libfreetype \
  --disable-libmp3lame \
  --disable-libopus \
  --disable-libvorbis \
  --disable-libvpx \
  --enable-nonfree

make


    


    error :

    


    AR  libavfilter/libavfilter.a
LD  ffmpeg_g
libavfilter/libxtest.a(vf_colorcalc.o): In function `colorcale_filter_frame':
/root/work/FFmpeg/libavfilter/vf_colorcalc.c:166: undefined reference to `test'
collect2: error: ld returned 1 exit status
Makefile:114: recipe for target 'ffmpeg_g' failed
make: *** [ffmpeg_g] Error 1



    


    please teach me how to build static lib to FFmpeg

    


  • Subtract a specific string from a variable in a for loop

    14 octobre 2020, par Filip

    I am making a file converter with batch using FFMPEG.

    


    I have encountered a problem when trying to subtract the name of a file from the complete link to the file to get the directory of the folder it is in so after the file is converted it can be put into that directory.

    


    Can someone advise me on how I could subtract the string from the filename variable from the string in the directory

    


    My code :

    


    @echo off
SETLOCAL ENABLEDELAYEDEXPANSION
set filetype=.flac
for /R %%a in ("*%filetype%*") do (
    set directory=%%a
    set filename=%%~na%filetype%
    set convdir=!directory:%filename%=!
    echo !convdir!
    pause
    ffmpeg -i "%%a" "convdir%%~na.wav"
    echo Converted %%a
)
echo Convertion Done!
pause


    


  • Anomalie #3806 (Nouveau) : var_mode=recalcul pour tout le monde

    12 juillet 2016, par nico d

    Les var_mode calcul et recalcul fonctionnent avec un utilisateur non connecté.
    De quoi faire grimper la charge d’un serveur si on s’amuse à spammer des urls avec un var_mode.

    J’ai une barre de débug perso qui m’affiche le nombre de requêtes en fonction de l’IP, je m’en sers pour vérifier la mise en cache en dév.
    Avec une session non connectée, sans cookies, les var_mode fonctionnent, je le vois au nombre de requêtes qui passent.
    Testé sur 3.0 et 3.1