Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (54)

  • 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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (5176)

  • avcodec/mpegaudio_tablegen : more dynamic table creation speedups

    28 novembre 2015, par Ganesh Ajjanagadde
    avcodec/mpegaudio_tablegen : more dynamic table creation speedups
    

    This further speeds up runtime initialization, with identical generated tables.

    Sample benchmark (x86-64, Haswell, GNU/Linux) :

    old :
    34441423 decicycles in mpegaudio_tableinit, 8192 runs, 0 skips

    new :
    10776291 decicycles in mpegaudio_tableinit, 8192 runs, 0 skips

    Most low hanging fruit is taken care of here. For some idea, note that
    83,064 array elements totalling 233,722 bytes need to be initialized.
    Thus, with this patch, we average 12.9 cycles per element or 4.6
    cycles per byte.

    Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/mpegaudio_tablegen.h
  • FFmpeg -filter_complex_script crop & blurbox with time based values

    6 juin 2021, par user1503606

    I am trying to create a script that will move a blur boxed across a video based on x and y cords in a text script.

    &#xA;

    I can easily create a blur box with the following ffmpeg command.

    &#xA;

    ffmpeg -y -i pex.mp4 -filter_complex_script cropblur.txt -map "[v]" out_crop.mp4&#xA;

    &#xA;

    The cropblur.txt has the following.

    &#xA;

    [0:v]crop=400:400:300:350,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,0\,5)&#x27;[v]&#xA;

    &#xA;

    This creates this.

    &#xA;

    enter image description here

    &#xA;

    What I want is the blur box to move across where the lady is running.

    &#xA;

    enter image description here

    &#xA;

    She obviously runs out from where the box is positioned.

    &#xA;

    I can create a script where I can track the correct x and y positions for the blox using jquery ui or something I just dont understand how to implement this in a filter_complex_script.

    &#xA;

    I thought it would be a simple as just appending to the script something like this.

    &#xA;

    [0:v]crop=400:400:300:350,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,0\,2)&#x27;[v]&#xA;[0:v]crop=200:200:200:360,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,2\,3)&#x27;[v]&#xA;[0:v]crop=200:200:200:370,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,3\,4)&#x27;[v]&#xA;[0:v]crop=200:200:200:380,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,4\,5)&#x27;[v]&#xA;

    &#xA;

    Changing the time and the x position based on the incremented time.

    &#xA;

    If I run this script I get this error.

    &#xA;

    No output pad can be associated to link label &#x27;0:v&#x27;&#xA;

    &#xA;

    Obviously I am doing something wrong but I cannot find any documentation that really helps me understand how to do this https://ffmpeg.org/ffmpeg.html the official docs dont really help.

    &#xA;

    I could do it by running multiple passes like this.

    &#xA;

    ffmpeg -y -i pex.mp4 -filter_complex "[0:v]crop=400:400:300:350,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,0\,2)&#x27;[v]" -map "[v]" out_crop.mp4 &amp;&amp; ffmpeg -y -i out_crop.mp4 -filter_complex "[0:v]crop=200:200:200:360,boxblur=10[fg]; [0:v][fg]overlay=300:350:enable=&#x27;between(t\,2\,3)&#x27;[v]" -map "[v]" out_crop2.mp4&#xA;

    &#xA;

    I Would just really like to understand how to use the filter complex scripts in this way ?

    &#xA;

    Any help would be great.

    &#xA;

    Thanks

    &#xA;

  • FFMpeg Add Background Music to Video

    10 juillet 2021, par Hossein

    I wanna add a background music on my video.&#xA;I tried this command

    &#xA;

    ffmpeg -i video.mkv -i audio.m4a -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -ac 2 output.mkv&#xA;

    &#xA;

    It worked but when music ended, My Video Sound end too.&#xA;I want to repeate the background music until video end.&#xA;And if I can change background music volume it will be awosome

    &#xA;