Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (73)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5988)

  • Minimum PHP/Server Requirements for Yii 2

    12 avril 2015, par Future King

    I tried to run my yii2 app on my web hosting (It has PHP5.4 and Linux Server). But when I tried to upload files then it showed me error that Fileinfo extension is not installed. I asked the server guys and they told me that they can not enable that extension because it is a shared hosting.

    I tried the same app on some other hosting. I received this error :

    PHP Startup : Unable to load dynamic library ’/usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so’ - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so : cannot open shared object file : No such file or directory

    I want to know, what are the minimum server requirements (or required PHP extensions) for Yii2, so that I can find another host according to that.

  • Android convert exo to mp4 after download dash

    7 août 2018, par Ali

    I have downloaded a Dynamic Adaptive Streaming over HTTP (DASH) via android DashDownloader class that is provided by exo player.

    SimpleCache cache = new SimpleCache(file.getAbsoluteFile(), new NoOpCacheEvictor());
    DefaultHttpDataSourceFactory factory = new DefaultHttpDataSourceFactory("ExoPlayer", null);
    DownloaderConstructorHelper constructorHelper = new DownloaderConstructorHelper(cache, factory);

    // Create a downloader for the first representation of the first adaptation set of the first
    // period.
    DashDownloader dashDownloader = new DashDownloader(Uri.parse(url), Collections.singletonList(new RepresentationKey(0, 0, 0)), constructorHelper);
    dashDownloader.download();

    Above code save many chunk .exo files into provided directory, How can i convert this files to single mp4 file ?

  • Container does not reflect MediaReader setting

    8 mars 2014, par Mondain

    I would like my reader to be able to handle audio, when it does not start with the video ; hence the setting of "AddDynamicStreams". How do I get the container to recognize the setting of the reader from which it originated ? Is there a flag or some other property that I need to set ?

    String inputUrl = "rtmp://127.0.0.1:1935/myapp/mystream live=1 buffer=1";
    IMediaReader reader = ToolFactory.makeReader(inputUrl);
    reader.setCloseOnEofOnly(false);
    reader.setQueryMetaData(false);
    // we want dynamic addition of streams
    reader.setAddDynamicStreams(true);
    // this shows "true"
    log.debug("Reader can dynamically add streams: {}", reader.canAddDynamicStreams());
    // get the container
    IContainer container = reader.getContainer();
    // this shows "false"
    log.debug("Container can dynamically add streams: {}", container.canStreamsBeAddedDynamically());