Recherche avancée

Médias (91)

Autres articles (85)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

Sur d’autres sites (15282)

  • Create video trailer (mp4) with FFMPEG and PHP from long mp4 video [on hold]

    23 octobre 2015, par user1887681

    i have a video site and i want to make trailers for all videos.
    ie I have to make a 12 second video from 4 randomly increments of 3 seconds each from the full video.

    Has anyone tried it ?

  • how to create video by images using php

    25 octobre 2015, par Nikunj Chavda

    I have some images video12.jpeg,video13.jpeg,video14.jpeg,video15.jpeg and I want to covert images to video.
    Please check below code but but it not working...

    first try by...

    exec("ffmpeg -i movie.mpg -r 0.2 -sameq -f image2 video%02d.jpeg");// not create video if put video%02d.jpg instead of video%02d.jpeg

    secode try

    exec('ffmpeg -r 10 -b 1800 -i video%03d.jpeg test1800.mp4');//// not create video if put video%02d.jpg instead of video%02d.jpeg

    Please suggest me how to create video using images.

  • create video from images and then stream to users

    9 janvier 2014, par Abdul Ali

    idea is to create a video from images provided by a user and at the same time stream the generated video to other user demanding it.

    kindly tell any efficient way to do this and which language out of PHP and C# .net will be suitable.

    have looked into ffmpeg to take images and convert to video and save to server and then stream .. kindly tell if this the possibility or any other method for live streaming.

    regards

    UPATE

    consider the following scenario as I understand :

    get images from server and start combining them to form a video. at the same time, stream the video to the users requesting it.. for new coming clients, stream the previously generated video from the begining and keep on sending the new video which is being generated from images to the previous clients.

    kindly tell if this is possible, if so then what can be the approach. Have read something about pipes but am completely new to ffmpeg and streaming in general.