Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • 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

Sur d’autres sites (4801)

  • Encoding all videos to MP4 and lowering resolution with Ubuntu

    14 avril 2014, par Mauro Valvano

    I have a web server based on Ubuntu 12.04, the user can upload a video (whatever the format/container/codec it is) then i want to convert it to an MP4 video. I tried ffmpeg without good result (and now it is also deprecated).

    How i can do this ?

    The important is also to reduce the resolution for HD videos for reduce video's size.

    Thank you in advance.

  • Revision 9893fb9859 : Merge "Fix decoder resolution change with tiles"

    9 avril 2014, par Frank Galligan

    Changed Paths :
     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_dthread.c



    Merge "Fix decoder resolution change with tiles"

  • 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