Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (51)

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

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

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

  • frei0r : handle string params

    29 août 2018, par Raphael Graf
    frei0r : handle string params
    

    This is needed for some of the frei0r filters (facebl0r and facedetect) which accept string parameters.

    Fixes the issue described here :
    http://www.ffmpeg-archive.org/Unable-to-set-ffmpeg-frei0r-facedetect-filter-parameter-td4680190.html

    Signed-off-by : Raphael Graf <r@undefined.ch>

    • [DH] libavfilter/vf_frei0r.c
  • create associative data from ffmpeg string result into python

    9 septembre 2018, par Question

    To perform video operations I’m using python with the support of ffmpeg. After I’ve uploaded videos, I need to resize them, so I’ll follow these instructions to calculate the video dimensions :

    link_v = "C:/video/video.mp4"
    ffmpeg = "ffprobe -v error -show_entries stream=width,height -of default=noprint_wrappers=1 %s"% link_v
    info = check_output(ffmpeg, shell=True)
    print(info)

    The console result is something like this :

    width=350
    height=350

    But I do not care about this, when it is printed as if it were a string, because the real data would be : b’width=350\r\nheight=350\r\n’ or [’width=350\r\nheight=350\r\n’].

    What I really want to see is an associative data : "width : 350, height : 350", once I get then I would call for example width in the info mode [’width’], how can I get this result ?

  • How to make command string for ffmpeg in c# correctly ?

    9 octobre 2018, par Rolens Centottantaquattro

    I wrote this code for make a video from still image and audio with ffmpeg in c#.
    I wrote the argument string and inserted the variable parameters between braces.
    Trying to start the program nothing happens. Something wrong with the string or something ?

    string image = folderInput.SelectedPath + "/" + name+ ".jpg";
    bmp.Save(immagine);
    string audioMixing = folderInput.SelectedPath + "/" + name + ".wav";
    string videoOutput = folderOutput.SelectedPath + "/" + name + ".mp4";                  
    const string templateArgumentsVideo = " -loop l -i {0} -i {1} -c:v libx264 -tune stillimage c:a aac -b:a 192k -pix_fmt yuv420p -shortest {2} -y";
    var argumentsVideo = string.Format(templateArgumentsVideo,image,audioMixing,videoOutput);

    Process makeVideo = new Process();
    makeVideo.StartInfo.UseShellExecute = false;
    makeVideo.StartInfo.RedirectStandardOutput = true;
    makeVideo.StartInfo.CreateNoWindow = true;
    makeVideo.StartInfo.FileName = (Convert.ToString(Environment.CurrentDirectory)) + "\\ffmpeg.exe";
    makeVideo = Process.Start(makeVideo.StartInfo.FileName, argumentsVideo);
    makeVideo.WaitForExit();