Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (103)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (6339)

  • Ffmpeg cannot use the text having white space, while adding a text over a video

    13 août 2018, par Shubham Kamlapuri

    I am using ffmpeg to add text over a video, the text can be more than one also. The problem i am facing is with the text having white spaces, ffmpeg is showing the invalid argument.

    My command is like this :-

    ffmpeg -i input -filter_complex drawtext=fontfile=fontpath:fontcolor=0x000000ff:fontsize=121.26316137279886:shadowcolor=0xffffffff:shadowx=0:shadowy=0:bordercolor=0xffffffff:borderw=0:box=1:boxcolor=0x00000000:boxborderw=30:x=284.73258578742804:y=703.5501114572116:enable='between(t,0,9)':text='hello hello' -c:v libx264 -preset ultrafast output

    Error i am facing :

    ffmpeg : Unable to find a suitable output format for ’hello’’

    ffmpeg : hello’ : Invalid argument

    If i am entering text without spaces, it is working perfectly fine, but things are not good with text having spaces. I am stuck at this point from last 2 days, If anybody can help me, will be very helpful !

  • 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 error > av_interleaved_write_frame() : No space left on device

    15 mars 2021, par Escoute

    I am recording screen using ffmpeg with following command

    



    ffmpeg -f alsa -f x11grab -i :0.0+0,0 -framerate 30 -crf 30 -video_size 400x400 output.mp4


    



    When I have low memory on disk, ffmpeg throws av_interleaved_write_frame(): No space left on device error. And while opening recorded file getting error This file contains no playable streams..

    



    Is it possible to make the video file playable ?