Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (85)

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

  • Revision 5c05fbf6bb : Merge "Refactor 4x4 block level rd loop" into experimental

    30 mai 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Merge "Refactor 4x4 block level rd loop" into experimental

  • How to implement FFMEG library for android video streaming

    10 mai 2014, par Kabir

    I am trying to create online streaming video player in android.
    I am trying to compile the appunite/AndroidFFmpeg library for android application to play HLS videos online. I am using linux-ubuntu OS I also have set the NDK path.
    I have executed all command one by one given on the link :

    https://github.com/appunite/AndroidFFmpeg

    But when I executed the following script :

    ./build_android.sh

    I got the following error :

    abi-gcc —sysroot=/home/singsys-063/android-ndk-r9d/platforms/android-5/arch-arm/
    checking whether the C compiler works... no
    configure : error : in
    /home/singsys-063/AndroidFFmpeg/FFmpegLibrary/jni/vo-amrwbenc :
    configure : error : C compiler cannot create executables
    See config.log for more details

  • how to use the H264 video encoder with ffmpeg / opencv2 ?

    30 août 2023, par Vince

    I am on ubuntu 22.04.

    


    I installed ffmpeg with apt.

    


    I am creating a video from some image files using python/opencv2 (installed via pip)

    


    When I use :

    


    cv2.VideoWriter_fourcc(*"mp4v")


    


    the video is successfully created, but is not supported by firefox.

    


    I read online that the H264 encoder would be a better fit for web-browsers supports.

    


    ffmpeg -codecs | grep h264 


    


    shows :

    


    


    DEV.LS h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders : h264 h264_v4l2m2m h264_qsv h264_cuvid ) (encoders : libx264 libx264rgb h264_nvenc h264_omx h264_qsv h264_v4l2m2m h264_vaapi nvenc nvenc_h264 )

    


    


    but

    


    cv2.VideoWriter_fourcc(*"h264")


    


    results in :

    


    


    OpenCV : FFMPEG : tag 0x34363268/'h264' is not supported with codec id 27 and format 'mp4 / MP4 (MPEG-4 Part 14)'

    


    


    I could not find online what was wrong (h264 is not installed, how to install it ? the 'fourcc' of h264 is not 'h264' ? I should not create a *.mp4 file ?)