Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (59)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6380)

  • ftp: fix flush control connection input

    2 juin 2013, par Lukasz Marek
    ftp: fix flush control connection input
    

    Signed-off-by : Lukasz Marek <lukasz.m.luki@gmail.com>

    • [DH] libavformat/ftp.c
  • Make VP9 encoding faster with the best possible quality without picture freezing

    24 décembre 2017, par kostya572

    I am using this code to combine 2 files together (overlay file over original file) :

    ffmpeg -r 60 \
           -i originalfile.webm -i overlayfile.mov \
           -filter_complex " \
               [0:v]setpts=PTS-STARTPTS[base]; \
               [1:v]setpts=PTS-STARTPTS+0.5/TB, \
                    format=yuva420p,colorchannelmixer=aa=0.7[overlay]; \
                [base][overlay]overlay=x=(W-w)/2:y=0[v]" -map "[v]" -map 0:a -c:a copy -c:v libvpx-vp9 -lossless 1 -threads 4 -quality realtime -speed 8 -tile-columns 6 -frame-parallel 1 -vsync 1 -shortest resultfile.webm

    Encoding speed is not bad and quality output also, but after some time video picture could freeze for several seconds, then again it plays ok and then again could freeze.

    How could I optimize this code to make fast speed with the highest possible quality as original file without picture freezing ?

    Thank you

  • How to loop through my text file and call the name of picture

    18 août 2022, par Ionut Bejinariu

    I need to take all audio files from a directory, and export them along with one of multiple pictures listed in a text file.

    &#xA;

    It's working to take all the audio files one by one, but I cannot make it have a different picture for each video. I have same picture all the time.

    &#xA;

      &#xA;
    1. I don't know how to make the loop working for the pictures files.
    2. &#xA;

    3. Will be nice if someone can tell me how I can group pictures in order to export as a slideshow.
    4. &#xA;

    &#xA;

    Thank you.

    &#xA;

    In .txt file my pictures are like this :

    &#xA;

    1.jpg&#xA;2.jpg&#xA;3.jpg&#xA;

    &#xA;

    And my code looks like this :

    &#xA;

    @echo off&#xA;set "sourcedir=E:\test slideshow imagini"  &#xA;set "outputdir=E:\test slideshow imagini\1" &#xA;PUSHD "%sourcedir%"&#xA;for /F "tokens=*" %%A in (poze3.txt) do (&#xA;    echo %%A&#xA;    :: pictures names&#xA;     for %%F in (*.wav *.mp3) DO ffmpeg -loop 1 -i %%A -i "%%F" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest -vf scale=1920:1080 "%outputdir%\%%F.mp4" &#xA;    POPD&#xA;)&#xA;

    &#xA;