Recherche avancée

Médias (91)

Autres articles (78)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (12060)

  • How to specify the path of the ffmpeg binary

    24 novembre 2015, par zaki ahmad

    Same question almost
    What is the correct path video using Streamio FFMPEG on Rails

    In it they say

    This gem assumes ffmpeg is available in your PATH. If it is not in your PATH, You need to specify the path of the ffmpeg binary.

    FFMPEG.ffmpeg_binary = '/usr/local/bin/ffmpeg'

    I follow this gem https://github.com/streamio/streamio-ffmpeg , then I do this :

    movie = FFMPEG::Movie.new("#{self.videod.path}")

    But the error is

    Errno::ENOENT: No such file or directory - the file '/home/des0071/practise/test_api/public/system/ads/videods/000/000/002/original/SampleVideo_1080x720_1mb.mp4' does not exist

    How I specify ffmpeg path ?What I do ?

  • 1 movie to 14 part video / 1 Subtitle [closed]

    10 avril 2020, par Tayfun Erbilen

    I just cut my one long movie to 14 piece with ffmpeg.

    



    And now, I don't know how to show subtitle.

    



    Subtitle was for full version, but now I have 14 pieces and I don't know how to fit subtitle to these parts. By the way, I want to show on web. I'm using jwplayer for videos, but still I didn't figure out subtitle issue.

    



    Is anyone suggestion ?

    


  • FFmpeg API : parse raw movie packet data into AVPacket

    7 novembre 2011, par Andrea3000

    If you have a movie file and you need to extract frame (packet) from it, it's simply a matter of writing :

    avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);

    ...

    AVPacket packet;
    av_read_frame(formatContext, &packet);

    But what if I don't have the movie file but only unparsed, raw packet data ? These raw packet data are the same as the raw data contained into the movie file but I don't access them throught avformat_open_input and therefore I can't use av_read_frame so FFmpeg doesn't parse them.

    How can I parse this raw data in order to build the corresponding AVPacket ?
    I need to obtain an AVPacket identical to the ones provided by av_read_frame.