Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (78)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (4819)

  • ffmpeg converted mp4 video format is not playing on html5 video player

    15 août 2017, par alina

    i have converted a video via ffmpeg to mp4 but its playing on desktop pc player like Vlc but not on html5 player or wordpress player.

    Iam using this command while conversion :

    ffmpeg." -i ".$video_to_convert." -i watermark.png -filter_complex 'overlay=10:main_h-overlay_h-10' -c:v libx264 -crf 17 -preset slow -c:a libfaac -b:a 192k -ac 2 -b:a ".$quality." -acodec libmp3lame -ab 126000 -ar ".$audio." -ac 2 -s ".$size." ".$converted_vids.$name.".".$new_format."

    where :

    .$video_to_convert. = input.mp4

    .$converted_vids.$name. = output.mp4

    is there any syntax problem ??????????????????

  • ffmpeg_opt : Set the video VBV parameters only for the video stream from -target

    25 mai 2015, par Michael Niedermayer
    ffmpeg_opt : Set the video VBV parameters only for the video stream from -target
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg_opt.c
  • Split a video file into separate video and audio files using a single ffmpeg call ?

    25 novembre 2015, par sdaau

    Background : I would like to use MLT melt to render a project, but I’d like that render to result with separate audio and video files. I’d intend to use melt’s "consumer" avformat which uses ffmpeg’s libraries, so I’m formulating this question as for ffmpeg.

    According to Useful FFmpeg Commands For Converting Audio & Video Files (labnol.org), the following is possible :

    ffmpeg -i video.mp4 -t 00:00:50 -c copy small-1.mp4 -ss 00:00:50 -codec copy small-2.mp4

    ... which slices the "merged" audio+video files into two separate "chunk" files, which are also audio+video files, in a single call ; that’s not what I need.

    Then, ffmpeg Documentation (ffmpeg.org), mentions this :

    ffmpeg -i INPUT -map_channel 0.0.0 OUTPUT_CH0 -map_channel 0.0.1 OUTPUT_CH1

    ... which splits the entire duration of the content of two channels of a stereo audio file, into two mono files ; that’s more like what I need, except I want to split an A+V file into a stereo audio file, and a video file.

    So I tried this with elephantsdream_teaser.ogv :

    ffmpeg -i /tmp/elephantsdream_teaser.ogv \
     -map 0.0 -vcodec copy ele.ogv -map 0.1 -acodec copy ele.ogg

    ... but this fails with "Number of stream maps must match number of output streams" (even if zero-size ele.ogv and ele.ogg are created).

    So my question is - is something like this possible with ffmpeg, and if it is, how can I do it ?