Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • 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 (11420)

  • Android ffmpeg white space in input path causing "no such file or directory"

    24 juin 2024, par Mehran

    I'm using the latest version of WritingMinds/ffmpeg-android-java library.

    



    I've tried single/double quoting the path with no success.

    



    I Logged my command after execution,
please look to the input path where a subDirectory contains whiteSpace, a comma has been added between the space :

    



    ffmpeg, -i, "storage/emulated/0/Telegram/Telegram, Video/4_5828137322067002802.mp4", -vf...


    



    I split and run my command like this :

    



    String crop = "-ss " + skipTimeForCrop + " -noautorotate -i " + newPath + " -vframes 10 -vf cropdetect=24:16:0 -f null -";
String[] cropCommand = crop.trim().split(" ");
execFFmpegForCrop(cropCommand);


    



    


    storage/emulated/0/Telegram/Telegram : No such file or directory

    


    



    Any idea on this ?

    


  • ffmpeg - how to remove white frames ?

    29 avril 2019, par Frank

    We doing videorecording with strobelight and the framerate is 30 fps.
    If we set the strobe below 30hz we got a black frame in the video. if we set the strobe over 30hz we got a white frame.

    I found how to remove the blackframe and duping the the frame before using :

    ffmpeg -i test.avi -vf blackframe=1,metadata=select:key=lavfi.blackframe.pblack:value=0:function=less -vsync cfr -c:a copy out.avi

    But i cant find anything to remove the white frame. Is there any filter i can use ?

    Greetings
    Frank

  • Adding transparency to a video from black and white (and gray) alpha information video images

    3 juillet 2018, par Jan F.

    I’d like to create a video with transparency (and semi transparency) in android. The images of the source video are split into two images, the top one with color information (looks like the normal video image), the bottom one with alpha information (the same shapes but only in black and white and gray, black means transparent).

    This is the solution for iOS :
    https://medium.com/@quentinfasquel/ios-transparent-video-with-coreimage-52cfb2544d54

    What would be the best way to to this in android ?

    Can this be solved with javacv, FFmpegFrameGrabber, FFmpegFrameFilter etc.?

    Or better with OpenGL ES and shaders ?

    Are there any samples ?

    Thanks !