Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (102)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (16842)

  • Distributed video decoding over a network

    26 mars 2015, par tkcast

    i’m developing a videowall controller.
    I can use any technology of programming language needed, and I want to decode videos of arbitrarily high resolution on my videowall.

    One possible solution is :
    - split the ultra high video into several slices using ffmpeg and have one computer to decode each tile of the videowall separately. I’d use the network only to control the playback

    Another interesting solution :
    - only a master computer would have the huge video, and it would control a distributed decoding over the network. Is it even possible ? how ?

    Thanks !

  • adding text on video using ffmpeg drawtext working when running through commandprompt not working using java

    9 mars 2014, par Nikita

    I am adding the text using to the video using ffmpeg drawtext. when running the command through command prompt it works fine but when running it using process builder its not working neither getting any exception.

    Following is the java code

    • the input & ouput videopaths are coming as a parameters. ffmpegUrl
      is the path of ffmpeg in the system.

      String names = "Nikita Sahu" ;

      ProcessBuilder builder = new ProcessBuilder(ffmpegUrl," -y -i ",videoFile.getAbsolutePath()," -acodec libmp3lame -vcodec msmpeg4 -b:a 192k -b:v 1000k -ar 44100 -vf \"drawtext=text=",names,":expansion=normal:fontfile=",fontTypeFilePath,":y=h-line_h:x=h-(2*lh)-n:fontcolor=white:fontsize=24:box=0\" -an ",convertedVideoFile.getAbsolutePath());

    I am not able to find out what i am doing wrong.
    When printing the same on console & running through command prompt it works fine.
    Any help will be appreciated.

  • avfilter/vf_overlay : Remove superfluous ;

    21 août 2020, par Andreas Rheinhardt
    avfilter/vf_overlay : Remove superfluous ;
    

    In a function body, a redundant ; is just a null statement that does
    nothing. Yet outside a function body, a superfluous ' ;' like one that
    exists if one adds a ' ;' immediately after a function body's closing
    brace is actually invalid C that compilers happen to accept. Yet when
    compiled in -pedantic mode, both GCC as well as Clang emit warnings for
    this like "ISO C does not allow extra ‘ ;’ outside of a function
    [-Wpedantic]".

    The scenario described above existed in vf_overlay.c as a result of
    macro expansion. This commit fixes it.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/vf_overlay.c