Recherche avancée

Médias (91)

Autres articles (111)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • 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 (...)

Sur d’autres sites (4328)

  • Can't use ffmpeg 3.2 in Android project

    21 novembre 2016, par world2ashish

    Tried almost everything, spent almost 4-5 days trying and still counting.

    The reason I want to compile recent version of ffmpeg is because https://github.com/WritingMinds/ffmpeg-android-java doesn’t work for video rotation. For this also I tried multiple answers, different versions of answer (transpose=1, transpose=dir=cclock, etc)

    Somewhere it was mentioned that rotate command wont work with previous versions of ffmpeg, so after a lot of trials, I started working on compilation of new ffmpeg. But all the tutorials for ffmpeg belong to earlier versions (of Android NDk, ffmpeg) which wont work with ffmpeg 3.2 and NDK r13b (I also tried with NDK downloaded by studio itself but no luck). In case it worked for you, please help.

    After a lot of frustrating experience I am writing this. Please help with a workflow or a clear direction. Thanks

    Wasnt able to tag ffmpeg3.2 because of reputation.

  • Concat lots of audio files to a video with ffmpeg [closed]

    22 mars, par Sulli

    I’m using this ffmpeg command to add audio effects at certain times to a video file :

    


    ffmpeg -i C:\path\to\video.mp4 -i C:\path\to\audio1.wav -i C:\path\to\audio2.wav -filter_complex "[1]adelay=0|0[a1]; [2]adelay=960|960[a2]; [a1][a2]amix=inputs=2[a]" -map 0:v:0 -map [a] -c:v copy -c:a aac -b:a 192k -loglevel error -y C:\path\to\output.mp4


    


    it works, but when I want to add LOTS of audio effects (like more than 200), I get errors like

    


    An unexpected error occurred: [WinError 206] The filename or extension is too long


    


    As it seems to be a command length problem, I might be able to overcome this by using files to read inputs and/or filters, but I have spent the last hours without finding the correct command syntax or file format to achieve that. How can I do that ?

    


  • Revision 1470529f62 : Refactor block_yrd function for RTC coding mode This commit separates Hadamard

    1er avril 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/encoder/vp9_pickmode.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/x86/vp9_error_sse2.asm



    Refactor block_yrd function for RTC coding mode

    This commit separates Hadamard transform/quantization operations
    from rate and distortion computation in block_yrd. This allows one
    to skip SATD computation when all transform blocks are quantized
    to zero. It also uses a new block error function that skips
    repeated computation of sum of squared residuals. It reduces the
    CPU cycles spent on block error calculation in block_yrd by 40%.

    Change-Id : I726acb2454b44af1c3bd95385abecac209959b10