Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (87)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7806)

  • Gstreamer + Logitech C920 h264 video lacks timing information, plus mp4mux not working

    30 mars 2015, par user1048388

    I’m currently getting the h264 encoded video and the audio from the C920 via gstreamer 1.2.4 :

    gst-launch-1.0 v4l2src device=/dev/video0 do_timestamp=true ! video/x-h264,width=1920,height=1080,framerate=30/1 ! h264parse ! muxout. pulsesrc device="alsa_input.usb-046d_HD_Pro_Webcam_C920_5530335F-02-C920.analog-stereo" ! queue ! audioconvert ! voaacenc bitrate=65536 ! muxout. matroskamux name=muxout streamable=true ! queue ! filesink location=/home/[omitted]/test.mp4

    The main problem is that the resulting video lacks timing information. By that I mean seek is not possible and the duration is unknown. Adding do_timestamp=true changes nothing.
    Simply copying the file in ffmpeg/libav shows several instances of :

    Non-monotonous DTS in output stream 0:0 ; previous : 926, current : 807 ; changing to 927. This may result in incorrect timestamps in the output file.

    After this short process (seconds on an hour long file), the timing information suddenly works for the entire video.

    What do I need to do to make this happen during the gst-launch pipeline ?

    There are some other problems which may or may not be related :
    I am using matroskamux despite wanting a mp4 container because mp4mux simply does not work in the given launch command. I receive

    ERROR : Pipeline doesn’t want to pause.
    ERROR : from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0 : Cannot identify device ’/dev/video0’.
    Additional debug info :
    v4l2_calls.c(568) : gst_v4l2_open () : /GstPipeline:pipeline0/GstV4l2Src:v4l2src0 :
    system error : No such file or directory

    when replacing matroskamux with mp4mux.

    I am clueless as to why this happens. Any help would be appreciated.

  • FFMPEG Overlay 1080X1920 video over 1280X720 video at a particular vertical position

    9 mai 2019, par CRAIG

    I have a 1080X1920 (vertical) video with alpha channel with a blank spot 500px north of the bottom. This blank spot is 1080X607.

    I have a 1280X720 sized video I want to position in that spot, so the 1280 video will have to be sized down to 1080 wide and then positioned 500px from the bottom and UNDER the video on top.

    This is what I currently have, but it is failing beautifully.

    /usr/local/bin/ffmpeg  -i 1080x1920.mov -i 1280x720.MOV
     -filter_complex "[1][0]overlay=main_w-overlay_w-0:main_h-overlay_h-500"
     -c:v libx264 -profile:v high444 -pix_fmt yuv420p -level 3.1 -y  final.mp4
  • What does “has_b_frames” mean in FFprobe output ?

    18 mai 2019, par Sunil Kumar

    I am checking a video file using ffprobe to findout if a video file has any b_frames or not, i can see ffprobe output shows “has_b_frames=0" , “has_b_frames=1" and “has_b_frames=2" when i check for different video files.

    index=0
    codec_name=h264
    codec_long_name=H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
    profile=Main
    codec_type=video
    codec_time_base=1001/60000
    codec_tag_string=avc1
    codec_tag=0x31637661
    width=1080
    height=1920
    coded_width=1088
    coded_height=1920
    has_b_frames=1

    “has_b_frames=0" means there are no B frames present in video file ?

    can someone tell me what these values indicates,