Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (97)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

  • MP3 + JPG of same name

    23 avril 2016, par user6162407

    For every mp3 file in my folder I have a certain jpg file with the same name, what I’m trying to achieve with cmd is making that name into one variable name without the file extension

    This is my code using only a mp3 name

    for %%a in ("*.mp3") do ffmpeg -i "%%a.mp3" -loop 1 -i Cover.jpg -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 320k -pix_fmt yuv420p -vf scale=3000:3000 -shortest "%%~na.mp4"
  • FFmpeg video from image plus audio length issue

    12 avril 2016, par blackbrayn

    I’m having issues regarding the output video lenght when using the following code wich seems to work for everybody else.

    On a input mp3 of 04:56 i get a 05:09 , the last part is only the image , no sound , for a longer mp3 input file i get more silent video at the end.

    I’m ussing the "-shortest" option just before the output file as an argument , as suggested in other threads around stackoverflow/superuser.

      ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -shortest out.mp4

    I already changed the input file type - wav , and the image - png , jpg , same silent "overhead" at the end of the video.

  • Low Latency Desktopstreaming with ffmpeg (p2p)

    8 avril 2016, par Gring

    I’m trying to stream my Desktop from one Pc to another with udp. Unfortunately the Latency is pretty high (I already could reduce it from about 15 Seconds to 2 Seconds, in tests where I run client and host on the same PC.
    My Hostcommand looks like this :

    ffmpeg -f dshow  -framerate 24 -i video=screen-capture-recorder -vf scale=1280:720 -vcodec libx264 -force_key_frames "expr:gte(t,n_forced*2)" -pix_fmt yuv420p -tune zerolatency -preset ultrafast -f mpegts udp://239.255.1.2:1234

    My Clientcommand looks like this :

    ffplay -fflags nobuffer -infbuf -fast -framedrop -vf "setpts=(PTS*0.95)" udp://239.255.1.2:1234

    Any Ideas, how to get this even faster ?