Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (92)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

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

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

Sur d’autres sites (6107)

  • ffmpeg concatenation of live streams with different codecs

    14 mai 2015, par ashishgupta_mca

    Great information is given on https://trac.ffmpeg.org/wiki/Concatenate of how to concat two files of different codecs and I tried option "Concat filter" for two files and it works as expected.

    I wish to have the concatenation of live streams from two webcams on timely basis. E.g. first camera live stream will be shown for 60 sec and then second camera live stream for 60 sec and then again first camera live stream for 60 sec.... Process continues

    This is to create concatenation on fly to reduce gaps between two streams switching.

    Is this possible by using ffmpeg concatenation ?

    Any direction will be much appreciated.

    Thanks a lot in advance.

  • Ffmpeg for Windowsphone 8

    11 mai 2015, par prakash

    I came across this urls
    1.https://github.com/pinger-inc/FFMPEG_WindowsPhone
    2.https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    I am trying to compile ffmpeg for windows phone 8. I able to compile successfully but I am missing the ffmpeg.lib file after compilation. I am trying to compile this because of the windows phone certification issue we faced while submitting to the store.

    "The native API api-ms-win-core-processthreads-l1-1-1.dll:GetProcessTimes() isn’t allowed in assembly FFMPEGRuntime.dll. Update it and then try again."
  • FFMPEG image resize not working

    8 décembre 2015, par Soundhar Raj

    FFmpeg version 0.6.5 is installed on my web server.

    In my website mp4 videos allowed to upload, that part is done.
    Now i am working on create a thumbnail of the video and then resize it.

    The following links are I referred.

    https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video

    https://trac.ffmpeg.org/wiki/Scaling%20(resizing)%20with%20ffmpeg

    This is the command i used to create a thumbnail from video, this command is working.

    $cmd = "ffmpeg -i test.mp4 -ss 0 -vframes 1 out.png";

    After creating the thumbnail, I tried the following the command to resize it, but this is not working.

    $cmd = 'ffmpeg -i out.png -vf scale=210:-1 output_320x240.png';

    And Some other commands i have tried

    $cmd = "ffmpeg -ss 10 -i test.mp4 -vframes 1 -filter scale=-1:150,crop=200:150 output.jpg";

    $cmd = "ffmpeg -itsoffset -1 -i test.mp4 -vframes 1 -filter:v scale=280:-1 output.jpg";

    In my localhost I used the following command to create thumbnail and resize in a single command, but this is also not working in the server.

    $ffmpeg = 'C:\\ffmpeg\\bin\\ffmpeg';
    $video = 'test.mp4';
    $cmd = "$ffmpeg -itsoffset -1 -i $video -vframes 1 -filter:v scale=\"210:-1\"  thumbnail.png";

    Thanks to all