Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (64)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (7945)

  • How to remove 6 seconds and keep the next 20 seconds of both video and audio and repeat it with ffmpeg

    16 juillet 2018, par Adam Estel

    I tried to figure a way to to remove 6 seconds of both video and audio every 20 seconds.This is my code :

     ffmpeg -y -i "input.mp4" -vf "select='not(lt(mod(t,20),6))',setpts=N/FRAME_RATE/TB,setpts=PTS-STARTPTS" -af "aselect='not(lt(mod(t,20),6))',asetpts=N/SR/TB,asetpts=PTS-STARTPTS" -preset superfast out.mp4

    But it resulted not that I want,the wrong timings being selected.
    I don’t know what did i do wrong here ?
    Sorry for my bad english.Thank you

  • how to add multiple gif watermakr in one video usign ffmpeg in android

    2 décembre 2019, par p.jadhav

    i want to create video with multiple gif images as sticker .i have already use ffmpeg library for create normal video.

    below code i have already use :

    String[] cmd="-i",margefilePath,"-ignore_loop","0","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-filter_complex","[0][1]overlay=x=W-w:y=0[tr] ;[tr][2]overlay=x=0:y=0[tl] ;[tl][3]overlay=x=W-w:y=H-h[br] ;[br][4]overlay=x=0:y=H-h[bl] ;[bl][5]overlay=x=(W-w)/2:y=(H-h)/2","out.mp4" ;

    Please help me how can i add multiple gif images in video . Thanks in advance :) and sorry for bad english

  • ffmpeg : How to set AVFormatContext from NSData

    21 janvier 2014, par SUKIYAKI

    I'm using FFmpeg library in Objective-C.

    I want to set AVFormatContext from NSData which contain imagedata.
    I know I can set AVFormatContext with av_open_input_file().
    so writing contents of NSData to a temporary file, I can do it like this.

    [data writeToFile:@"./temp.mov" atomically:YES];
    av_open_input_file(&pFormatCtx, "./temp.mov", NULL, 0, NULL);

    .
    .
    .

    NSFileManager *fm = [NSFileManager defaultManager];
    [fm removeFileAtPath:@"./temp.mov" handler:nil];

    but, I don't want to use temporary file.

    Does anyone know smart way ?

    sorry my poor English.

    Thanks