Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (92)

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

  • ffmpeg keeping full title when encoding

    14 mai 2020, par LordFenixNC

    I am trying to name the audio and sub files in the batch encode using the title tag in the meta data. the issue im running into is if the title says English Commentary it will only grab English or Jap uncut it will only grab Jap.

    



    $audioTracks = ffprobe $f.FullName -show_entries stream=index:stream_tags=title -select_streams a -of compact=p=0:nk=1 
$audioTracks = $audioTracks.split("")
foreach($audio in $audioTracks) {
    $ID = $audio.split("|")[0];
    $audioName = $audio.split("|")[1];
    ffmpeg -i $f.FullName -threads 0 -muxdelay 0 -y -map 0:$ID -codec aac -f segment -segment_time 10 -segment_list_size 0 -segment_list out/$f/audio/audio_"$audioName.m3u8" -segment_format mpegts out/$f/audio/"audio_$audioName%d.ts"


    


  • avformat/mux : add proper support for full N:M bitstream filtering

    18 avril 2020, par Marton Balint
    avformat/mux : add proper support for full N:M bitstream filtering
    

    Previously only 1:1 bitstream filters were supported, the end of the stream was
    not signalled to the bitstream filters and time base changes were ignored.

    This change also allows muxers to set up bitstream filters regardless of the
    autobsf flag during write_header instead of during check_bitstream and those
    bitstream filters will always be executed.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mux.c
  • I want to overlaying the gif image on full video using NReco.VideoConverter (FFmpeg). But getting error using ffmpeg.CreateMedia

    6 mai 2020, par Gagandeep Singh

    When I'm creating using ffmpeg.Invoke the below command is working perfectly :-

    &#xA;&#xA;

    ffmpeg.Invoke($"-i {@"result.mp4"} -ignore_loop 0 -i {@"giffy_1000.gif"} -filter_complex \" [1:v]scale=1920:1800 [ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" {@"result2.mp4"}");&#xA;

    &#xA;&#xA;

    But when I tried using the above command in ffmpeg.CraeteMedia then it throws the error as convertion failed. Below is the code snippet :-

    &#xA;&#xA;

    ffmpeg1.ConvertMedia(&#xA;    new[] {&#xA;        new FFMpegInput(@"result.mp4"),&#xA;        new FFMpegInput(@"giffy_1000.gif")&#xA;    },&#xA;    @"style.mp4",&#xA;    null,&#xA;    new ConvertSettings() {&#xA;        CustomOutputArgs = " -ignore_loop 0 -filter_complex \" [1:v]scale=1920:1800[ovrl];[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/20:shortest=1 \" "&#xA;    });&#xA;

    &#xA;&#xA;

    Please let me know what mistake I'm doing.

    &#xA;