Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (74)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (5880)

  • ffmpeg is consuming 100% CPU

    16 juillet 2020, par Sumit Kumar

    I am trying to run below ffmpeg command from Java application.

    


    ffmpeg -y -v error -i ~/Downloads/call.wav -af "volume=enable='between(t,5,7)':volume=0" ~/Downloads/call_0.wav


    


    I am using below dependency as ffmpeg wrapper

    


    <dependency>&#xA;  <groupid>net.bramp.ffmpeg</groupid>&#xA;  <artifactid>ffmpeg</artifactid>&#xA;  <version>0.6.2</version>&#xA;</dependency>&#xA;

    &#xA;

    I am running this operation in loop for 1000s of files. I can see the CPU utilization immediately going to 100% and stays there untill the job gets finished.&#xA;I am using c5a.large instance.&#xA;Is there any flag in ffmpeg that can optimize the CPU utilization.

    &#xA;

  • merging 2 editing videos without saving them using ffmpeg

    14 avril 2021, par Eswar T

    I want to combine 2 videos assume even they are edited among themselves

    &#xA;

    How normally we do

    &#xA;

    video 1 :

    &#xA;

    ffmpeg -i 1.mp4 -filter:a "volume=0.0" test1.mp4&#xA;

    &#xA;

    video 2 :

    &#xA;

    ffmpeg -i 2.mp4 -filter:a "volume=10.0" test2.mp4  &#xA;

    &#xA;

    now I can combine them using

    &#xA;

    ffmpeg -i test1.mp4 -i test2.mp4 -filter_complex [0:v:0][0:a:0][1:v:0][1:a:0]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] out.put.mp4&#xA;

    &#xA;

    So my question is, Is there a way to make this 3 steps process into 1 step and without saving files of step 1 and step 2

    &#xA;

    I do know that we can combine into one using && but my main query is there a way to do without saving the files of video1 and video2 that edited files

    &#xA;

    Hope I'm a bit clear with my query

    &#xA;

    Question edited/added :

    &#xA;

    ffmpeg -i test.mp4 -filter:a "volume=8.0,atempo=4.0" -vf "transpose=2,transpose=2,setpts=1/4*PTS" -s 640x480 test.mkv &#xA;

    &#xA;

    can we do all these options also in the merge command(operations like change video Speed, resolution, rotation, framerate, and trim) ?

    &#xA;

  • can we use -vf and -filter:a with -filter_complex

    15 avril 2021, par Eswar T

    I want to combine some videos with some specific features like(video Speed, volume increase, resolution, rotation, framerate) of the final output of the video&#xA;We can do this process in 2 steps like

    &#xA;

    Combine video

    &#xA;

    ffmpeg -i test1.mp4 -i test2.mp4 -filter_complex [0:v:0][0:a:0][1:v:0][1:a:0]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] output.mp4&#xA;

    &#xA;

    Then apply filters

    &#xA;

    ffmpeg -i output.mp4 -filter:a volume=1.0,atempo=1.0 -vf transpose=2,setpts=1/1.0*PTS,scale=3840X2160,fps=30 final.mp4&#xA;

    &#xA;

    I can do it this way but is there any way to do it in 1 step

    &#xA;

    thank you

    &#xA;