Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (77)

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

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (5988)

  • VideoCapture fails to open videos in Ubuntu

    27 février 2016, par onepiece
    VideoCapture vc;
    vc.open("example.avi");
    vc.isOpen(); //false

    Also doesn’t work for absolute paths and mp4 videos.

    Other solutions I’ve encountered online :

    • Install ffmpeg. I have done this.
    • Add ffmpeg files to PATH. The answer is for Windows, and it seems for Ubuntu the path is /usr/local/share/OpenCV/3rdparty. However that directory only has a lib subdirectory with a single file libippicv.a. The ffmpeg installation guide says the compiled ffmpeg programs are in ~/bin, and I’ve tried adding ~/bin/ffmpeg (executable, could be the opencv_ffmpeg.dll Linux equivalent) to my PATH.
    • Change the video’s codec. The file I have is in MPEG-4 AVC, but replacing the XVID in the post with AVC did not output any video.
    • I was thinking of trying more video samples, but I’ve already tried three and am not sure where to get definitely readable videos.
  • libavcodec/proresdec2 : Setup qmat_chroma according to RDD36

    19 août 2020, par Harry Mallon
    libavcodec/proresdec2 : Setup qmat_chroma according to RDD36
    

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/proresdec2.c
  • ffmpeg start/stop rtmp streams on the fly

    14 août 2020, par almosnow

    I have a media stream that I transmit as rtmp to several endpoints, for this I use ffmpeg and the tee pseudo-format.

    &#xA;

    Sometimes one of the sites may come online (or go offline) and I would like to start/stop streaming to it accordingly.

    &#xA;

    Restarting ffmpeg is not an optimal choice as all the streams that are currently being transmitted would get cut.

    &#xA;

    Is there a way to add/remove targets to tee on the fly ? Or a way to achieve a similar thing with ffmpeg and tools from a linux environment ? Perhaps there's something that already does this with rtmp streams.

    &#xA;