Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (83)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

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

  • How to convert large videos in aws using php and ffmpeg [on hold]

    14 novembre 2016, par Nick Lynch

    I would like to be able to convert mov and avi to MP4 using Amazon web services with php and elastic beanstalk.
    However if you try and convert a large video using ffmpeg the server will time out, and the video will not save. I want to know if there is a way to do this. Possibly involves splitting the larger video into small pieces and converting each of the pieces, then combining the pieces. However even this takes too long to actually do on the server.

    Any help you can give would be greatly appreciated.

    Thank you !

  • FFmpeg X264 multithread decoding

    16 novembre 2013, par Xin He

    I want to do H264 multithread decoding using FFmpeg.
    First I use X264 to encode yuv420 to file.x264
    ./x264 -o file.x264 —slices 4 —input-res 1280x720 —fps 25 file_560x420.yuv

    The slices count is 4.

    However, when I use FFmpeg to decode,
    ./ffmpeg -y -threads 4 -thread_type slice -i file.x264 final.yuv

    FFmpeg calls func"execute_decode_slices" four times, not in a multithread way.
    I also found that in *execute_decode_slices(h, context_count)*, the context_count is 1.
    FFmpeg call this 4 times.

    Could someone help to solve this problem ?

    Thanks very much !

  • FFmpeg X264 multithread decoding

    16 novembre 2013, par Xin He

    I want to do H264 multithread decoding using FFmpeg.
    First I use X264 to encode yuv420 to file.x264
    ./x264 -o file.x264 —slices 4 —input-res 1280x720 —fps 25 file_560x420.yuv

    The slices count is 4.

    However, when I use FFmpeg to decode,
    ./ffmpeg -y -threads 4 -thread_type slice -i file.x264 final.yuv

    FFmpeg calls func"execute_decode_slices" four times, not in a multithread way.
    I also found that in *execute_decode_slices(h, context_count)*, the context_count is 1.
    FFmpeg call this 4 times.

    Could someone help to solve this problem ?

    Thanks very much !