Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (34)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (6465)

  • ffmpeg merging two sources with optional audio

    9 février 2020, par Sven Nolting

    I want to merge two video files together by using ffmpeg. I already found this command :

    ffmpeg -i INPUT1 -i INPUT2 -filter_complex \"[0:v][0:a][1:v][1:a]concat=n=2:v=1:a=1[v][a]\" -map \"[v]\" -map \"[a]\" OUTPUT

    The Problem is, that INPUT2 not alway has Audio, so ffmpeg throws an invalid Input Stream.
    I’m very inexperienced with ffmpeg and I’m not getting smart out of the documentation.
    Is there a possible way that is decently understandable, possibly in one command ?

    Summed up : I want to concat two Video Files including Audio, but the second file may or may not has an audio layer.

  • Client/Server Video Streaming [on hold]

    7 juillet 2014, par Nawaf Alsrehin

    I want to build client/Server application in order to do video streaming from server (that is holds the video files) to the client (that want to view the video files). In between I should be able to transcode the video stream to fit the clients (PC, tablet, and smart phone) requirements. For example, If I have a flv (680x320, 30 fps, H.264 codes )video file in the server and want to send it to the client that be able to view only mp4 (320x240, 25 fps, MPEG4 codec).

    1) I am wondering if Red5 will work or not because it just allow only FLV clients ?

    2) Can I design my own RTP or RTMP protocols to do this ? If yes, It is doable or not within few weeks

  • ffmpeg concat two sources with optional audio

    2 mars 2020, par Sven Nolting

    I want to concat two video files together by using ffmpeg. I already found this command :

    ffmpeg -i INPUT1 -i INPUT2 -filter_complex \"[0:v][0:a][1:v][1:a]concat=n=2:v=1:a=1[v][a]\" -map \"[v]\" -map \"[a]\" OUTPUT

    The Problem is, that INPUT2 not alway has Audio, so ffmpeg throws an invalid Input Stream.
    I’m very inexperienced with ffmpeg and I’m not getting smart out of the documentation.
    Is there a possible way that is decently understandable, possibly in one command ?

    Summed up : I want to concat two Video Files including Audio, but the second file may or may not has an audio layer.