Recherche avancée

Médias (91)

Autres articles (61)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7188)

  • hlsenc : add use_localtime_mkdir option to automatically create time-based directory

    3 février 2016, par Johan Ström
    hlsenc : add use_localtime_mkdir option to automatically create time-based directory
    

    Use with -use_localtime, and set -hls_segment_filename to a path which
    contains a subdirectory i.e. /some/path/%Y%m%d/%Y%m%dT%H%M%S-%s.ts
    This will mkdir the %Y%m%d-part of the path if it does not already
    exist.
    In addition, each filename in the playlist output will be prefixed with
    this subdirectory (if playlist and segment shares the same base path).

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/muxers.texi
    • [DH] libavformat/hlsenc.c
  • ffmpeg setting ouput option correctly (-r)

    25 mars 2018, par machinery

    I would like to use ffmpeg on Ubuntu with the following command :

    ffmpeg -i input_video -vf scale=w=320:h=-1 -y -vcodec libx264 -preset ultrafast -r 60 output_video

    For the -r option the documentation says :

    -r[:stream_specifier] fps (input/output,per-stream)

    Set frame rate (Hz value, fraction or abbreviation).

    As an input option, ignore any timestamps stored in the file and
    instead generate timestamps assuming constant frame rate fps. This is
    not the same as the -framerate option used for some input formats like
    image2 or v4l2 (it used to be the same in older versions of FFmpeg).
    If in doubt use -framerate instead of the input option -r.

    As an output option, duplicate or drop input frames to achieve
    constant output frame rate fps.

    I would like to use the output option. How can I do this ? What is the per-stream option doing (it is not written above) ?

    Second, is it correct that the -vf scale=w=320:h=-1 option scaled the video to width 320 and keeping the aspect ratio ?

  • How can FFmpeg support the segment_size option ?

    19 avril 2023, par Donething

    This option is used to limit the size of the file segment.

    &#xA;

    ChatGPT said that this option is available from version 4.1 (released in November 2018), but the compiled version I downloaded from the official website does not have this option.

    &#xA;

    Then I wanted to compile it myself. After Git clone the source code, I added segment support according to the configuration ChatGPT said and then compiled and installed it.

    &#xA;

    However, there was still no such option.

    &#xA;

    ./configure --enable-gpl --enable-libx264 --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx265 --enable-libaom --enable-version3 --enable-libfdk-aac --enable-nonfree --enable-muxer=segment&#xA;

    &#xA;

    Does FFmpeg have this option ? ? ?

    &#xA;