Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9514)

  • how to put a red frame before each video programmatically, when concatenating videos using ffmpeg

    7 février 2023, par Maifee Ul Asad

    To merge files with ffmpeg I'm creating a text file like this :

    


    file 'a.mkv'
file 'b.mkv'
file 'c.mkv'


    


    Then I'm running this command to concat these videos :

    


    ffmpeg -f concat -i file.txt -c copy merged.mkv


    


    But the thing is, I want to put red frame for three seconds in the middle of each video.

    


    Now I can get these videos' frame dimensions and create a video and modify the text file like this :

    


    file 'red.mkv'
file 'a.mkv'
file 'red.mkv'
file 'b.mkv'
file 'red.mkv'
file 'c.mkv'


    


    But this is not a programmatical approach, so is there any way I can concat videos and put red frames for three seconds (before every video) ?

    


    I want to generate that red frame video, on run time.

    


  • http: restructure http_connect error handling path

    21 mars 2014, par wm4
    http: restructure http_connect error handling path
    

    The authstr memory allocations make it annoying to error in the middle
    of the header setup code, so apply the usual C error handling idiom to
    make it easier to error at any point.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • FFMPEG - zoompan image in top left corner

    11 novembre 2020, par user3221592

    I can get zoompan to zoom in a dot in the middle of the frame with the standard :

    &#xA;

    zoompan=z='min(zoom+0.24,10)':x='(iw/2-(iw/zoom/2))':y='ih/2-(ih/zoom/2)'

    &#xA;

    but I need the dot to appear in the top left of the frame. I have tried any number of combinations of zooms and 'shifts' and the best I could come up with was :

    &#xA;

    zoompan=z='min(zoom+0.14,10)':x='(iw/2-(iw/zoom/2))+(728/zoom)':y='ih/2-(ih/zoom/2)+(308/zoom)'

    &#xA;

    BUT for the first 6 frames the dot 'travels' across the frame. No idea why this might be the case. Also the maths(iw/2-(iw/zoom/2)) just doesn't make sense to me to centre the image, I would have thought it would be (iw-(iw*zoom))/2 ?

    &#xA;

    This works on any 1980x1080 video and I have attached the sample image that I am using along with the full code

    &#xA;

    ffmpeg -y -i CHORUS_INTRO_VIDEO3.mov -loop 1 -i CentreDot.png -filter_complex "[1:v]zoompan=z='min(zoom+0.14,10)':x='(iw/2-(iw/zoom/2))+(728/zoom)':y='ih/2-(ih/zoom/2)+(308/zoom)':d=150:s=1920x1080[circleOverlay] ;[0:v][circleOverlay]overlay=0:0" -shortest output.mp4&#xA;enter image description here

    &#xA;