Recherche avancée

Médias (91)

Autres articles (62)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6311)

  • Can MPMoviePlayerController play m3u8 file

    26 novembre 2013, par Nitesh

    I am trying to play a m3u8 file using MPMovieplayercontroller
    i pass the url to the MPMovieplayercontroller
    But it will not play. Is it possible ?

    I am converting flv,avi video file formats into m3u8 files using ffmpeg for live http streaming on my server.

    The m3u8 url works when i pass it to VLC as a network stream on my mac.
    I know this has been asked a number of times but i have not got any satisfactory answers.

    Regards
    Nitesh

  • rtp streaming using av_interleaved_write_frame or av_write_frame

    4 avril 2013, par sinan
    I am using ffmpeg windows libraries to rtsp/rtp demux and muxing. But I have problem about processing time of av_interleaved_write_frame or av_write_frame, for example for h264 encoded 1920x1080 pictures it takes 10-20 ms for p frames and 70-100 ms for I frame. I am using VLC for receiver and network bandwith is 100Mb, operating system is 32 bit windows7. If I choose smaller size picture processing time is decreases but it still over for my expectation.

    Is it normal these processing times.

    thanks,

  • Is it possible to be more accurate than a second for the snipping function below ? (MATLAB, ffmpeg)

    19 juillet 2021, par Micah T
    snip = 'ffmpeg -i %s -ss %d:%d:%d -t %d:%d:%d -async 1 -strict -2 %s';
snipstr = sprintf(snip,UncutFile,StartHRS,StartMIN,StartSEC,DurHRS,DurMIN,DurSEC,CutFile);
runsnip = system(snipstr);


    


    These lines snip a video based on starting time inputs and duration inputs. I need my videos to be snipped to times more accurate than a second.

    


    Thank you.