Recherche avancée

Médias (91)

Autres articles (113)

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

  • FFMPEG Video Encode Single Input Multi Output

    1er août 2014, par ShyamKG

    I have a custom video encoder filter which can produce upto 5 different bitrates for the same resolution.

    Note that single instance of the encoder is optimized for producing these multiple outputs. Every encode call returns 5 output buffers.
    This means that I would not want to run more than one encoder instance.

    I need to integrate this encoder to FFMPEG which should give multiple outputs for a single input. I have referred the following link regarding creating multiple outputs.
    https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    In this link multiple outputs are created by running multiple encoder instances which is not my requirement.

    Is there any way by which we can configure ffmpeg to give multiple output for one encoder instance ?

  • lavfi : split frame_count between input and output.

    30 août 2016, par Nicolas George
    lavfi : split frame_count between input and output.
    

    AVFilterLink.frame_count is supposed to count the number of frames
    that were passed on the link, but with min_samples, that number is
    not always the same for the source and destination filters.
    With the addition of a FIFO on the link, the difference will become
    more significant.

    Split the variable in two : frame_count_in counts the number of
    frames that entered the link, frame_count_out counts the number
    of frames that were sent to the destination filter.

    • [DH] libavfilter/af_ashowinfo.c
    • [DH] libavfilter/af_volume.c
    • [DH] libavfilter/asrc_sine.c
    • [DH] libavfilter/avf_showfreqs.c
    • [DH] libavfilter/avfilter.c
    • [DH] libavfilter/avfilter.h
    • [DH] libavfilter/f_loop.c
    • [DH] libavfilter/f_metadata.c
    • [DH] libavfilter/f_select.c
    • [DH] libavfilter/f_streamselect.c
    • [DH] libavfilter/vf_bbox.c
    • [DH] libavfilter/vf_blackdetect.c
    • [DH] libavfilter/vf_blend.c
    • [DH] libavfilter/vf_crop.c
    • [DH] libavfilter/vf_decimate.c
    • [DH] libavfilter/vf_detelecine.c
    • [DH] libavfilter/vf_drawtext.c
    • [DH] libavfilter/vf_eq.c
    • [DH] libavfilter/vf_fade.c
    • [DH] libavfilter/vf_fieldhint.c
    • [DH] libavfilter/vf_fieldmatch.c
    • [DH] libavfilter/vf_framestep.c
    • [DH] libavfilter/vf_geq.c
    • [DH] libavfilter/vf_hue.c
    • [DH] libavfilter/vf_overlay.c
    • [DH] libavfilter/vf_paletteuse.c
    • [DH] libavfilter/vf_perspective.c
    • [DH] libavfilter/vf_rotate.c
    • [DH] libavfilter/vf_showinfo.c
    • [DH] libavfilter/vf_swaprect.c
    • [DH] libavfilter/vf_telecine.c
    • [DH] libavfilter/vf_tinterlace.c
    • [DH] libavfilter/vf_vignette.c
    • [DH] libavfilter/vf_zoompan.c
    • [DH] libavfilter/vsrc_mptestsrc.c
  • Input and output path in Android

    16 juillet 2014, par user3675966

    I am using FFMPEG to make a video editor. I stuck when selecting a folder :

    1/ I will show "File Manager" to user. They can choose a folder then return a path. How can choose a folder and get its path. For example : /sdcard/videokit/.

    enter image description here

    Here is my code, I must choose a mp4 file (not a folder I want).

    public void openFolder()
    {
       Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
       Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()
           + "/sdcard/");
       intent.setDataAndType(uri, "folder|video/mp4");
       startActivityForResult(Intent.createChooser(intent, "Select Folder"),PICK_VIDEO_OUTPUT_REQUEST);
    }

    Thank you in advance !