Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (50)

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

  • Matlab - Capture Video Streams (part 2)

    25 novembre 2014, par Uri Merhav

    This is a follow up on this question. I’m trying to capture a live stream from an ip address (e.g. rtsp ://10.0.0.0:554/live.sdp). The only solution I’ve seen so far is to use mexopencv to call opencv’s streaming functionality from matlab. This has a very significant drawback, in that you need to get mexopencv to actually work on a mac, which is quite challenging.

    So, I was thinking about using the following approach :

    1. Use ffmpeg to stream the rtsp stream into a named pipe
    2. Read the named pipe from Matlab, just as if it was an ordinary video file (am I correct that this is how one uses a named pipe ? I’ve never used this kind of solution before)

    If this solution is inefficient, not going to work, or if there’s a better alternative — I’d love to hear about it !

  • FFMpeg : Create gif from video of specific dimensions, gif part already working

    24 septembre 2018, par We are Borg

    I am working on creating a GIF from video. Currently, with ffmpeg, I am able to create a GIF, but I want to create it with specific dimensions. How can I do that ?

    COmmands I am using as of now :

    ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 "+filePath

    ffmpeg -i " + filePath + " -ss 00 -t 05 -vcodec libx264 -an " + gifLocation + videoName

    ffmpeg -i " + gifLocation + fastForwardName + " -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -loop 0 - " + gifLocation + gifName

    Thank you.

  • Ffmpeg converts video of double size of original video with second part without audio

    21 janvier 2020, par mridul4c

    I am converting some videos with below command in ffmpeg

    ffmpeg -y -i source.mp4 -c:a libfdk_aac -ac 2 -ab 128k -c:v libx264 -x264opts keyint=24:min-keyint=24:no-scenecut -crf 18 -b:v 4000k -maxrate 4000k -bufsize 4000k -vf "scale=-1:1080" destination_1080.mp4

    But in some cases the output video is exactly double size of the original and the second part is without audio. Please help.