Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (45)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (3753)

  • Overlay one video onto another video ?

    8 février 2016, par CDR LDN

    I understand that this is a very open ended question. I have done some initial reading into FFmpeg, but now require some guidance.

    Problem

    • I have a video my_video.mp4.
    • I would like to overlay another video on top of my_video.mp4.
    • The result should be a single video.

    Notes

    Thanks - C.

    Edits

    1. Backend is Go/Ruby. Open to using a new language.
  • Convert and stream videos [on hold]

    26 septembre 2013, par user969068

    I am going to develop a php script on linux based server which will be used to upload videos on server and stream to users. I have seen many open source free/paid libraries available with flash,html5 etc players. After research I have decided to go with ffmpeg to convert videos and use jwPlayer with RTMP protocol to stream videos.

    I am not much familiar with streaming concept but I have researched a lot on this subject since few days, so last I thought to ask here if I am going the correct way to achieve my goals, which are listed below :

    1. My main concern is to start streaming videos as soon page is loaded.
    2. Convert videos after upload ( Found ffmpeg for this purpose is well suited )
    3. Seeking video should be faster (which after searching I found is good with RTMP protocol)

    Please can someone guide me if I am going in the right direction by choosing ffmpeg, jwplayer with RTMP protocol. Thanks a lot for any guidance.

  • ffmpeg reduce mp4 size errors : 'Unknown encoder libx264' and 'Unable to find a suitable output format for'

    25 juillet 2018, par martins

    I am quite new to ffmpeg and video editing. I try to reduce the size of various mp4 files. I followed a pretty straightforward tutorial (link) and also copy the audio. In Terminal (Mac user) I write :

    ffmpeg -i inputfile.mp4 -c:a copy -c:v libx264 -crf 24 outputfile.mp4

    The error here is : Unknown encoder 'libx264' and even when I omit the ’libx264’ from the code above, it still gives me the following error : [NULL @ 0x7f9a21814c00] Unable to find a suitable output format for '24' 24: Invalid argument

    As long as I know, 24 is a totally valid value for crf. Of course I tried with others (20, 14, 30) and the error is still there.

    I would very much appreciate a bit of guidance. Thanks for your time in advance.