Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (111)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (11158)

  • Configure ffmpeg with android in mac [on hold]

    28 novembre 2013, par Mr.G

    I'm using Mac 10.8.5

    i want to configure ffmpeg in my android application and convert .mov to .mp4 format.

    But first of all i want to configure ffmpeg in to my android project .

    Is there any way to do that . i have already tried some links . But when I'm loaded the libavcodec to my activity . it gives unsatisfied link error.

    Can anyone point me to a working link ?. It should compatible with Mac

    i have already tried How to build + include FFMPEG into an existing Android project "@William Seemann" answer. to configure it

    im pretty sure managed to add in to my android project . but when im tryng to load libavcodec it gives me An UnsatisfiedLinkException

  • FFMPEG avformat_open_input returns unpopulated Format context

    21 avril 2013, par Michael IV

    I am trying to load avi and flv files programatically with FFMPEG API.The files seem to get loaded because avformat_open_input doesn't return 0 .But when inspecting AVFormatContext variable for every property in the inspector I am getting just "Unable to read memory" .Here is how I do it :

               av_register_all();
       avcodec_register_all();
       AVFormatContext *pFormatCtx=avformat_alloc_context();


       if(avformat_open_input(&pFormatCtx,"assest/comp1.avi",NULL,NULL) !=0)
       {

           printf("%s","Movie load Success");
       }else{


           printf("%s","Movie load Fail");
       }  

    I am using VisualStudio 2010 C++ compiler .Windows 7.

    UPDATE :

    Ok ,Please discard this question.I found the error.It was a stupid typo in the file directory path.

  • Cuda has limit on ffmpeg process

    15 mars 2021, par R.A.M

    
i'm using ffmpeg and cuda for my video transcode process.
    
so i have one problem.
    
look at below image : [![enter image description here][1]][1]


    
note : if image not loaded use this link : https://i.stack.imgur.com/w4jXk.png

    
one process just use 263MiB of my second GPU. not completly use that !!
    
that is not good. i think there should be a way to remove this limitation for gpu process.
    
my ffmpeg command that i run is :

    


    ffmpeg -y -loglevel info -hwaccel cuda -hwaccel_output_format cuda -hwaccel_device 1 -i "MYVIDEO" -vf scale_npp=w=426:h=240 -c:v h264_nvenc -profile:v main -b:v 400k -sc_threshold 0 -g 25 -keyint_min 25 -bf 2   -c:a aac -b:a 64k -ar 48000   -f hls -hls_time 6 -hls_playlist_type vod   -hls_allow_cache 1   -hls_segment_filename f-0-seg-%d.ts f-0.m3u8


    


    thank