Recherche avancée

Médias (91)

Autres articles (105)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11656)

  • Extract the 0th frame of every second on a live video

    14 avril 2020, par geo-freak

    I have a command to extract the zero-th frame of every second. I got the command from here.

    



    ffmpeg -i input.ts -vf "select=between(mod(n\, 25)\, 0\, 0), setpts=N/24/TB" output-%04d.png


    



    But when I run the above command on live feed, it is extracting more than 100000 frames. The above command is not working on a live recording. Can anyone suggest or help me to extract the very first frame on a live recording ? Thanks in advance.

    



    P.S : For my testing I am running the above command on a tcr video.

    


  • divx to mp4 converted videos using avconv are not playing with jwplayer in Firefox

    30 mai 2014, par Suresh

    I am trying to convert all format videos to mp4 using libav library. I am using the following command to convert any format to mp4 i.e

    "avconv -i input -s 1024x768 -strict 2 -c:v libx264 -c:a copy -f mp4 output.mp4" and it is working fine in chrome and IE where as not working in Firefox and safari.

    You can find the issue here https://ppe.maventus.com/player.php?v=721

    Note : avi to mp4 is working in all browsers.

    Any help to fix this would be much appreciated.

    Thanks in advance,
    Suresh

  • FFMPEG splitted video from rtmp stream having issue with audio

    9 avril 2021, par Shibin Raju Mathew

    Using ffmpeg, I'm able to split video from rtmp stream into different chunks, but having issue with audio. Each chunk having muted audio at the end. That means last few seconds of video is muted. Here I added the command what is used.

    


    ffmpeg -i rtmp://server-url -ss 00:00:00 -c copy -map 0 -segment_time 00:00:30 -f segment -reset_timestamps 1 %03d_split.mp4


    


    NB : if you can suggest any other library to do the same in java programs then it will be a great helpful. Thanks in advance.