Recherche avancée

Médias (91)

Autres articles (27)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

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

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

Sur d’autres sites (4001)

  • Revision 75916 : une fonction saisies_aplatir_chaine() qui permet de supprimer les ...

    16 septembre 2013, par maieul@… — Log

    une fonction saisies_aplatir_chaine() qui permet de supprimer les sous-groupes dans une chaîne de datas
    Exemple :

    *Visible à l'œil nu
    Vega|Véga
    Arcturus|Arcturus
    Antares|Antarés
    Deneb|Deneb
    * Visible au télèscope
    Alkaid|Alkaïd
    Dubhe|Dubhe
    /*
    Kornephoros|Kornephoros
    AlbireoA|Albiréo A (rouge)
    AlbireoB|Albiréo B (bleue)
    Rasalgethi|Rasalgethi

    devient

    Vega|Véga
    Arcturus|Arcturus
    Antares|Antarés
    Deneb|<a class="missing wiki">DenebAlkaid?</a>|Alkaïd
    Dubhe|<a class="missing wiki">DubheKornephoros?</a>|Kornephoros
    AlbireoA|Albiréo A (rouge)
    AlbireoB|Albiréo B (bleue)
    Rasalgethi|Rasalgethi
  • Segmenting video into different parts and unique rendering on each part then concat afterwards

    2 mars 2016, par goudarziha

    I currently have a very poorly performing application that splits up a video, renders it and the concats all rendered videos on android using ffmpeg

    So I am running into issues with segmenting a video up into 5 parts at each different intervals/durations, rendering each video segment uniquely slowing up/speeding up and then finally concat all the segments back into one final video.

    Currently I am doing each part separately -

    Segmenting -
    example for one segment
    -y -i pathIn -ss 0.0 -t 2.0 -vcodec copy -acodec copy -an pathOut

    Rendering - example slowing down/speeding up

    - y -i path -filter:v setpts=2.0*PTS pathOut

    Concat -

    - f concat -i input1.mp4 -i input2.mp4 -i input3.mp4 -i input4.mp4 -i input5.mp4 -c copy output.mp4

    Right now I am running different separate thread for each editing of video, so 3, segment, rendering and concat.

    I am trying to get this all done on one command ffmpeg line if at all possible, if not just the segmenting and rendering of the videos and kick of the concat cmd line later.

    I am trying to emulate something similar to this https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

  • ffmpeg on ubuntu convert 3gp to iphone 5 format [closed]

    21 mars 2013, par Jistanidiot

    I'm desperately trying to convert a 3GP video into something the iphone 5 will import and play. Verizon says they cannot help me that it is not possible to convert a Droid video to iphone.

    After much trouble I came to the conclusion to try the conversion on my Ubuntu box using ffmpeg. Again after a long struggle, I removed the package and followed the directions at https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    Now with the new complied ffmpeg, I try the following command :

    ffmpeg -i foo.3gp -s 320x240 -r 30000/1001 -b:v 200k -bt 240k -vcodec libx264 -coder 0 -bf 0 -flags2 -wpred-dct8x8 -level 13 -maxrate 768k -bufsize 3M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

    However I keep getting the error :

    [NULL @ 0xa9874a0] Unable to find a suitable output format for &#39;libfaac&#39; libfaac: Invalid argument

    I found a random blog post saying you needed to add

    `-target type’

    and then specify target file type (“vcd”, “svcd”, “dvd”, “dv”, “dv50”, “pal-vcd”, “ntsc-svcd”, … ). However after trying all 8 of them listed I still got the same errors.

    I'm at a complete loss. How can I convert the 3gp video into the iphone 5 format ?

    Thanks in advance.