Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (67)

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

  • 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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3583)

  • x86inc : Fix AVX emulation of scalar float instructions

    4 mars 2016, par Henrik Gramner
    x86inc : Fix AVX emulation of scalar float instructions
    

    Those instructions are not commutative since they only change the first
    element in the vector and leave the rest unmodified.

    • [DH] common/x86/x86inc.asm
  • x86inc : Fix AVX emulation of scalar float instructions

    4 mars 2016, par Henrik Gramner
    x86inc : Fix AVX emulation of scalar float instructions
    

    Those instructions are not commutative since they only change the first
    element in the vector and leave the rest unmodified.

    • [DH] libavutil/x86/x86inc.asm
  • How to ffmpeg - encode a video for the web ?

    23 août 2014, par Michael Heuberger

    the videos I currently encode with ffmpeg for the web have a problem : I cannot repeat these in a loop nor jump to a scene. They only can be played once and that’s it !

    Maybe I have to add some more parameters ? Not sure which ones.

    I am encoding the videos into MP4 and WebM both so that they can be played in all browsers within the <video></video> element. This with the nodejs module ttps ://github.com/fluent-ffmpeg/node-fluent-ffmpeg. Here an example of the command for the WebM version only :

    ffmpeg -r 14.713847936548586 -f image2 -pix_fmt yuv420p -i /home/michael.heuberger/binarykitchen/code/videomail.io/var/local/tmp/clients/11e4-2a94-058ed290-9c13-4572b2c7aa99/frames/%d.webp -y -an -vcodec libvpx -b:v 386k -deadline realtime -cpu-used 5 -crf 4 /home/michael.heuberger/binarykitchen/code/videomail.io/var/local/tmp/clients/11e4-2a94-058ed290-9c13-4572b2c7aa99/videomail_preview.webm

    Any clues are very welcome !