Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (68)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10026)

  • How do I draw a line over a video whose width equals the current timeframe using FFMPEG

    19 août 2019, par Martin Mbae

    I am trying to draw a line across a video to show the progress of the video.

    Using FFMPEG I am able to draw a line using this code

    ffmpeg -i video.mp4 -vf drawbox=w=10:h=10:color=pink:t=fill output.mp4

    I, however want to alter the width of the line to be equal to "Total number of frames divided by the current frame"

    I am using this code

    ffmpeg -i video.mp4 -vf drawbox=w="%{frame_num/120}":h=10:color=pink:t=fill output.mp4

    which is giving me this error

    [Eval @ 00000072037fe4f0] Undefined constant or missing ’(’ in ’%frame_num/120

    I have also tried the code below which is also not giving me what I want.

    ffmpeg -i video.mp4 -vf drawbox=w='text=%{frame_num/120}':h=10:color=pink:t=fill output.mp4

    How do I go about this. Specifically how to set the width of the box to be equal to the number of the current frame

  • Using libav without command line ?

    15 décembre 2012, par Khuất Văn Phiến

    I use this command below for converting file

    ./avconv -i inputFile -vcodec libx264 -trellis 2 -crf 23 -tune psnr -vf crop='trunc(iw/2)*2:trunc(ih/2)*2' -y outputFile

    But, I don't want to use this command, I want to make a function like

    convert(char *inputFile, char *outputFile). (The option of my function like option in command line)

    And then I will call it from my main function
    for example

    int main(){
       convert(in01, out01);
       convert(in02, out02);
       convert(in03, out03);
       return 0;
    }

    I also read this post. But it is not clear to me.
    Could anyone tell me how to solve this problem ? I have googled many times but did not find the solution.

  • How to decode MP3 using libmp3lame decoder using ffmpeg command line ?

    28 septembre 2016, par Kumar

    I need to decode .mp3 file using libmp3lame decoder in ffmpeg, this ffmpeg build contains libmp3lame. Decoded output can be .wav/.raw format.So can anyone help me how to decode this using ffmpeg command line.I’m using windows 8.1 os.