Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (89)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4708)

  • X264—Why does "—pass 1 —stats" make the file bigger ?

    4 mai 2016, par Codecodeup

    I am using --pass 1 --stats <stats file="file" location="location"></stats> to generate the stats file for H.264 encoding with x264. The command is like this :

    <x264 binary="binary"> <input file="file" /> -o <output file="file"> --preset veryslow --crf 27
     --tune ssim  --scenecut 0 --pass 1 --stats <stats file="file" location="location">
    </stats></output></x264>

    When I ran this command with and without --pass 1 --stats <stats file="file" location="location"></stats>, the difference between the sizes of the final output files are very different. The one with --pass 1 --stats <stats file="file" location="location"></stats> is much bigger. What is the reason ? Thanks.

  • OpenCV (C++) Load images sequentially with name containing X

    4 avril 2016, par Alec Gamble

    I was wanting to create a program which would take every image within a certain directory (preferably with a specific image prefix) and store them in an array of Mats.

    subquestion :
    I’m creating the images using ffmpeg previously in the same program.

    system(
          "ffmpeg "
          "-i ..." // input file
          "-r 10 " // rate in Hz
          "..." // output location
          );

    What is the best practice for the location to output the images to considering that they’re to be temporary ? I’m building in XCode and am currently making an OSX application but I would ideally like to be able to port it to iOS. should I use /tmp ?

  • Android RTSP to v4l2 device

    16 mars 2016, par user2060733

    I have created an application that takes an RTSP stream and displays it SurfaceView. This is straightforward enough. However I was wondering if it was possible to take an RTSP stream in Android and use it to create a v4l2-device in the same way connecting a webcam does at a location such as /dev/video0.

    Can this be done using a compiled version of FFMPEG for Android or perhaps a simpler method ?

    Any direction on this would be greatly appreciated !