Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (77)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5896)

  • FFmpeg : How to convert vertical video with black sides, to video 16:9, with blurred background sides

    10 avril 2017, par Andrey

    Vertical video with blurred background sides

    How to make this by using FFmpeg ?

    Example without FFmpeg :
    Adobe After Effects
    Sony Vegas Pro

  • Quickest and most reliable way to get clips of h.264 video from VLC saved uncompressed

    24 janvier 2020, par Stonecraft

    I am trying to set up a pipeline to record video clips while I watch movies (usually but not always in h.264) and prepare them for editing in Premier. I usually watch videos using VLC, and the "record" button is perfect. However, in order to edit the video, it needs to be in a format other than h.264.

    I’ve had variable luck with transcoding.. it seems that I have to use trial and error to find a codec I can convert to that doesn’t result in horrible artifacts. I’m thinking it would be best to decode the video and save in an uncompressed format, then edit, and then encode in the codec of my choice.

    Is there a way for ffmpeg/handbrake to decompress video and then save the uncompressed video instead of transcoding to a different codec ? Or better yet, to get VLC’s "record" button to save the decoded stream instead of the encoded video ?

  • ffmpeg:Unable to broadcast to live stream from webcam

    13 mai 2020, par gbenga ogunbule

    I have this code that I believe should be able to grab from webcam and broadcast a live stream i.e. Users will be able to watch or stream live what there admin is doing at that moment in time.

    



    I have this code for it

    



    C:\Apache24\htdocs\v­ideo\assets\ffmpeg\b­in>ffmpeg -f dshow -i video="HP Webcam" -c:v libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -c:a libmp3lame -b:a 24k -ar 22050 -bsf:v h264_mp4toannexb -maxrate 750k -bufsize 3000k -f mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4


    



    Also notice I use the absolute path mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4 instead localhost/video/assets/uploads/videos/en.mp4 and the reason is because, when I use the latter, it is recording the video into the folder where I run the command.

    



    And this is the HTML code I wrote for it.

    



    <video width="320" height="240" controls="controls">&#xA;  <source src="assets/uploads/videos/en.mp4" type="video/mp4">&#xA;Your browser does not support the video tag.&#xA;</source></video>&#xA;

    &#xA;&#xA;

    How do I online streaming using ffmpeg

    &#xA;