Recherche avancée

Médias (91)

Autres articles (70)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (2597)

  • Evolution #4573 (Nouveau) : Enlever Jquery UI du Core

    13 octobre 2020

    Jquery UI (https://jqueryui.com/) n’a plus d’activité maintenue (en tout cas aucune release depuis 4 ans maintenant).

    Il serait opportun de supprimer jQuery_UI du core, et de le remplacer par des librairies spécifiques pour les besoins identifiés.

    Tout d’abord l’usage dans le Core.

    Je crois que l’on utilise :

    le dateur

    À remplacer par https://duetds.github.io/date-picker/ ?
    Voir également la discussion sur Saisies : https://git.spip.net/spip-contrib-extensions/saisies/issues/43

    le sortable

    À remplacer par https://sortablejs.github.io/sortablejs/ ?

    D’autres plugins s’appuient sur d’autres éléments le jQuery-UI :

    - Accordéons et Tabs (Fabrique)
    - Une extension picker multidate (Agenda)
    - ...

    Dans un premier temps, il « suffit » qu’ils mettent le plugin jQueryUi actuel en dépendance...
    Dans un second temps... trouver des alternatives adaptées... et faire en sorte qu’elles soient partageables entre différents plugins si besoin.

    Sur le partageables

    Il pourrait y avoir un plugin du core regroupant des librairies js utilisées régulièrement, comme le faisait le plugin jquery-ui, mais avec différentes librairies plus indépendantes.
    Pourquoi pas. Plutôt que de faire N petits plugins JS.

  • Save Slow motion video with ffmpeg on android devices

    25 mars 2017, par nkalra0123

    I want to save videos in slow motion through my android app.I tried to convert videos into slow motion by changing frame rate.

    I used the following commands,first command is dumping 30 frames per second from videos to a temp directory, and then second command is using these images to create a video with reduced or faster frame rate and then i am deleting all the images from temp directory.

    ffmpeg -i input_file.mp4 -r 30/1 img%03d.png

    ffmpeg -framerate 15/1 -i img%03d.png -r 30 -pix_fmt yuv420p out4.mp4

    But this is a very slow operation. It is taking like forever even for small videos.

    I even tried to change PTS(presentation time stamp) of videos, but it is not working properly on android phones
    using this command :

    ffmpeg -i input.mkv -filter:v "setpts=2.0*PTS" output.mkv

    as suggested here :
    https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video

    Can anybody suggest me how can i make it fast. Is it necessary to save frames to a temp directory, can i pass the output of ffmpeg process to another ffmpeg process executing concurrently through some method.

    Is there any other ffmpeg command to save the videos in slow motion ?

  • FFMPEG - build ubuntu 32 bit - missing shared library : libspeex

    29 avril 2013, par Benoit Brayer

    I am currently doing a cross platform software calling ffmpeg in c++ and I need a ffmpeg build working on both ubuntu 32bits and 64bits for the installer.
    I also need this ffmpeg build to include librtmp, libh264, x11-grab, alsa, and mp3.

    I tried to compile ffmpeg on a 32bits virtual box to have a ffmpeg build working on ubuntu 32 bits and 62 bits.

    I used this guide to build ffmpeg :
    https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    After compiling all the libs and ffmpeg himself, after installation using the deb files, ffmpeg is working perfectly on the 32bits virtualbox with all of my required components but not on my 62bits ubuntu.

    When executing ffmpeg on ubuntu 64bits i got a message saying : impossible find the shared library libspeex.

    Do you have any idea why I have this problem only on linux 64bits with the save deb files ?
    Do you know a website where i could find an ffmpeg 32bits build with all the components I need (static if possible) ?
    I tried this website http://ffmpeg.gusari.org/static/ but the build is not including alsa...

    I have a build for windows working perfectly, I downloaded the 32 bits static build on this website : zeranoe builds website for windows.

    Thanks in advance for any answer.
    Regards.

    Benoit Brayer