Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (107)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (13324)

  • Is there a way to convert a moviepy VideoFileClip to a binary stream in memory ?

    14 décembre 2019, par Eric Nguyen

    I am trying to convert a VideoClipFile that’s already loaded into memory and convert to a binary stream so that I can save it to a cloud storage system. However, the cloud storage system only accepts binary streams, so I can’t just use the normal save in moviepy. The other option is to write the binary stream to disk, then open it as a binary stream, but if I have thousands of videos that’s going to be too costly. Thanks for the help.

  • Is it possible to convert media with humble-video ?

    23 mai 2017, par ayZagen

    As the title says is it possible to convert media files, like xuggler does, with humble-video ?

  • How can we convert pdf to images in same resolution ?

    17 juillet 2012, par Preet Sandhu

    I have two pdf of different formats, I need to convert those into video both are working with different script, I want any common script for all. any suggestion will be appreciated.

    one pdf converting with below script

    exec("convert -density 150 -quality 100 -resize 800x $pdf_path $temp_images ");
    exec("ffmpeg -loop 1 -f image2 -r 0.5 -b 1800 -i $temp_images_wildcard -c:v libx264 -preset slow -tune stillimage -r 5 -t 22 -y $frame_target 2>&1",$output);

    another converting working with this script

    exec("convert -geometry 1600x1600 -density 200x200 -quality 100 $pdf_path $temp_images ");
    exec("ffmpeg -loop 1 -f image2 -r 0.5 -b 1800 -i $temp_images_wildcard -c:v libx264 -preset slow -tune stillimage -r 5 -t 22 -y $frame_target 2>&1",$output);

    Thanks
    Preet