Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (67)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6194)

  • How To create mosaic with live stream with ffmpeg ( or with xuggle )

    20 septembre 2013, par Emre KarataÅŸoÄŸlu

    For a thousand minutes I try to find a way that stream multiple video and combine them into a one output . I wanna do that with ffmpeg or xuggler with ffmpeg cmd.
    VirtualDub and avis couldn't meet my needs. Actually I couldn't find a way stream in avis . I can only make 4 8 16 videos in a screen on virtualdub but they are local videos and not my issue .

    >cd c:\f\bin

    ffmpeg -i rtmp ://localhost/live/me -vf "[in] scale=iw/2:ih/2, pad=2*iw:ih [left] ; movie=other stream, scale=iw/4:ih/4 [right] ; [left][right] overlay=main_w/2:0 [out]" -b:v 768k output

    anyway join two stream side by side , but I want more .
    Is it possible with ffmpeg ? Also
    I cant use the program like spycam ,vlc etc . Don't say to me vlc , console vlc can easily do it .

  • Live Video Encoding in ffmpeg

    3 septembre 2012, par amsundaram

    Actually i am trying to compress raw video to MPEG-4 AVC/H.264 BD-compatible High Profile / Level 4.1 video.I am using ffmpeg.

    ffmpeg -threads 2 -f rawvideo -pix_fmt bgr24 -re -s 720x576 -i - -threads 2 -vcodec libx264 -deinterlace -s 720x576 -coder 1 -flags +loop -cmp +chroma -partitions -parti8x8-parti4x4-partp8x8-partb8x8 -me_method dia -subq 1 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -b_strategy 1 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -bf 3 -refs 1 -directpred 1 -trellis 0 -flags2 +bpyramid-mixed_refs+wpo-Þdct8x8+fastpski-mbtree -wpredp 0 -b 3000k -g 300 -an -f flv -y -

    it works (output video is 21MB for 1min) while using -f mp4 error shows (muxer does not seekabe output) any one help me. Is it right way to get it ah ?

    Thank you very much.

  • How do I extract parts of a video with a specific aspect ratio with ffmpeg or mencoder ? [on hold]

    26 juin 2013, par MinecraftBhil

    I've got some recordings from TV. The movies are all in 4:3 but the advertisement is in 16:9. My input format is a mpeg 2 transport stream. I would like to convert my movies to mp4 with h264 video and aac audio but delete all frames from the video with 16:9 aspect ratio. The sound should also be deleted at the matching frames.
    Converting mts to mp4 is easy with ffmpeg but how do I extract the frames with 4:3 aspect ratio ?

    converting mts to mp4 :

    ffmpeg -i input.mts -b:v 6000k -b:a 256k -vcodec libx264 -acodec aac -o output.mp4

    I'm under a gentoo linux with ffmpeg version 0.10.3 and MEncoder 1.1-4.5.4