Recherche avancée

Médias (91)

Autres articles (86)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11216)

  • Issue decoding RTP video using FFMPEG [on hold]

    8 décembre 2016, par dev-mbd

    Currently, we cannot decode video sent via RTP. We we’re able to get the input and stream info but we have gotPicture always set to 0 when we decode.

    We are wondering if someone already managed to do the same before and how to do it also correctly.

    FYI, we’re using the FFMPEG wrapper from Github https://github.com/Ruslan-B/FFmpeg.AutoGen and we’re trying to decode the video in c#.

    Thank you in advance for the help !

  • Using Zeranoe FFmpeg build can I remove ID3 tags while converting the files ? [closed]

    16 février 2013, par user2079183

    My system has been infected with Malware though a rootkit and I am converting my files to simpler formats in attempt to remove any malware hiding in them. In terms of my music files, I am looking for a way to batch remove all of the ID3 tags from my music files to insure that any malware is removed from the ID3's. Is there a setting in FFMPEG which removes or does not carry the ID3 tags over to the output file ?

    THanks in advance !

  • Multiple Inputs and Outputs ffmpeg

    8 août 2014, par user3892883

    I have a large number of IP cameras, I can access each through the RTSP protocol.
    I want to use ffmpeg to convert RTSP to MJPEG each camera.

    I used this command :

    ffmpeg -i rtsp://xxxx/h264 http://localhost:8090/INPTU1.ffm -i rtsp://xxxx:554/h264 http://xxx/INPUT2.ffm

    But the command repeat each output with the first input.

    My web application should display each camera in the network.

    Thanks in advance.