Recherche avancée

Médias (1)

Mot : - Tags -/university

Autres articles (61)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

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

  • Real-time seeking and playback ffmpeg use case

    6 octobre 2023, par BlackIce2107

    What is best approach to store the 24x7 RTSP recorded streams and format that can satisfy near real-time seeking and playback preferably without concatenating or trimming them first and then serving the resulting file ?

    


    We have attempted using h264 videos that are segmented into 15 minute chunks with a high key frame interval where the user may request for a start and end time that can span either multiple videos or a single video file.

    


    With FFMPEG this is relatively straightforward but we would need to either concatenate or trim files based on the input which takes a tiny bit of time even with copy codec accurately and even on higher-end EC2s thereby leading to a unsatisfactory user experience.

    


    Additonally attempted to use hevc/h265 to also tackle cost efficiency as this is also a factor in the long run but hevc videos are not widely supported on most browsers.

    


  • Anomalie #3386 : Spip derrière Varnish : port non-standard dans l’URL ?

    13 février 2015, par Mathieu MD

    Fil Up a écrit :

    Pour ma part j’utilise SPIP et Varnish sans aucun souci, [...]
    Je n’ai remarqué aucun souci avec le port "non standard" sur lequel tourne mon serveur apache.

    Et un phpinfo() via Varnish sur tes serveurs montre bien $_SERVER["SERVER_PORT"] = 81 (ou 8080 dans ton cas) ? Si oui, saurais-tu m’expliquer pourquoi url_de_base() ne te renvoie pas http://hostname:8080/spip/, notamment pour spip_admin.css, quand tu es logué ? Ton _SERVER["HTTP_HOST"] contient peut-être déjà ":80" ?

    M’enfin, je ne fait que remonter mon expérience ; si ça n’affecte que moi, tant mieux. ;-)

  • NVENC_HEVC Encoding making my files larger

    9 novembre 2016, par Alan

    I got a new Nvidia GPU to speed up my video encoding. I am working with x264 files to x265 and wanted to go faster. Using the library libx265 I am getting about 85fps when working on a file that is 720p, but if I use the nvenc_hevc I get around 600-700fps

    My input file is 269M and when I use the nvenc_hevc it grows to 394M. Doing the exact same command with libx265 gives me a file size of only 68M. Obviously I would like to keep the low file size, but take advantage of the GPU to process it 15X faster.

    Anyone else have any experience with this video codec ?

    My command is : ffmpeg -i infile.avi -c:v nvenc_hevc -rc vbr_2pass -rc-lookahead 20 -gpu any out7.mp4

    vs

    ffmpeg -i infile.avi -c:v libx265 -rc vbr_2pass -rc-lookahead 20 -gpu any out7.mp4