Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (90)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

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

  • FFmpeg does not successfully send http request to server

    20 octobre 2019, par e-ly

    I’m trying to output data from ffmpeg to my webserver, but it simply does not work when I use my domain. It works as expected when I use localhost but not when I use my domain.

    I’ve tried multiple things such as changing from a subdomain to a subdirectory using nginx, and like I said— it works when I use localhost but not when I use my domain. When I ran -v trace the logs told me that the connection was successful but the server did not receive anything, yet when I visited the same url in my browser I got a response.

    ffmpeg command :

    '-v', 'trace',                                              
    '-f', 'x11grab',
    '-s', '720x480',
    '-r', '30',
    '-i', ':100',
    '-an',
    '-c:v', 'mpeg1video',
    '-q:v', '12',
    '-bf', '0',
    '-f', 'mpegts',
    'http://stream.domain.com/'                                                                                                    

    Nginx rule :

    server {
      listen 80;
      server_name stream.domain.com;
      location / {
          proxy_pass http://localhost:9000/;
      }
    }    

    Nodejs code :

    app.post('/', (req, res) => {
       console.log('Post received', req.url, req.ip)
       res.sendStatus(200)
    })

    I expect the console of the node process to let me know that a post has been received (for debugging purposes)
    Instead, nothing is received.
    However using http://localhost:9000/ instead of http://stream.domain.com/ works as expected

  • Execution failed for task ':extension-ffmpeg:externalNativeBuildRelease'

    21 septembre 2021, par Feroz Khan

    I'm trying to build ExoPlayer with ffmpeg extension upon running the ./gradlew extension-ffmpeg:assembleRelease command, getting the following error.

    


    Build command failed.
Error while executing process /root/Android/Sdk/cmake/3.18.1/bin/ninja with arguments {-C 
/home/ferozkhandev/ExoPlayer/extensions/ffmpeg/.cxx/cmake/release/armeabi-v7a ffmpegJNI}
  ninja: Entering directory 
`/home/ferozkhandev/ExoPlayer/extensions/ffmpeg/.cxx/cmake/release/armeabi-v7a'
 
ninja: error: '/home/ferozkhandev/ExoPlayer/extensions/ffmpeg/src/main/jni/ffmpeg/android- 
libs/armeabi-v7a/libswresample.a', needed by 
'/home/ferozkhandev/ExoPlayer/extensions/ffmpeg/buildout/intermediates/cmake/release/obj/armeabi- 
v7a/libffmpegJNI.so', missing and no known rule to make it


    


  • Convert .mov (ios7) to format playable on android 4.2.1

    29 novembre 2013, par user3048419

    I have got an iphone with ios7 and an android with 4.2.1. I want to take a video on the iphone and then play it later on the android. I am converting (via Ubuntu 13.04) the .mov video from the iphone into an mp4 format via the following (taken from Encoding video for Android) :

    avconv -i <input />.MOV -vcodec libx264 -profile:v baseline -b 500k -r 30 -vf "setsar=1:1" -acodec libvo_aacenc -ac 2 -ar 44100 -ab 128k <output>.mp4
    </output>

    Unfortunately <output>.mp4</output> does not seem to play on the android phone (android 4.2.1). Does anyone have any suggestions on how I can convert the .mov file into a format playable on android ?