Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

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

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

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

  • new ffmpeg_movie() not working anymore after changing host

    30 juillet 2014, par user2526873

    We have developed some short movies processing website. The previous host removed the ffmpeg support, so we changed the hosting provider. They support ffmpeg, the extension is loaded, my script hasn’t change. Though, this part is not working anymore :

    $movie = new ffmpeg_movie($uploadFile);
    $length = $movie->getFrameCount();

    The length is 0, but there and I get no errors in the log and this happens with every file I use ffmpeg_movie on.

    What can I do ?

    Thank you in advance for the help !
    Angela

  • ffmpeg command line tool remove all metadata information after converting a file codec

    28 septembre 2012, par Jaswinder

    I am converting abc.flac file to abc.mp3 using ffmpeg command line tool. But when abc.mp3 is created all metadata information get clear like artist name , album name etc. all field get empty.
    i am using this command
    ffmpeg -i "abc.flac" -acodec mp3 -ab 256 "abc.mp3"

    this give me abc.mp3 i also try -map_metadata tag but it is not working
    Have you any idea about this
    Thanks in advance.

  • ffmpeg streaming rtsp with parameters in the uri (url)

    11 mars 2015, par PGKLIC

    I attempt to stream a rtsp source and publish it through rtmp. But in my source url, there are several parameters :

    ffmpeg -i rtsp://ip/user=admin&password=admin&channel=1&stream=0.sdp -f flv rtmp://local/live/cam1

    how to set ffmpeg accepting such url with parameters, thank you in advance.