Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (42)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (4668)

  • avformat/dashdec : Also fetch final partial segment

    5 avril 2021, par Matt Robinson
    avformat/dashdec : Also fetch final partial segment
    

    Currently, the DASH demuxer omits the final segment for a non-live
    stream (using SegmentTemplate) if it is shorter than the other segments.

    Correct calc_max_seg_no to round up when calulating the number of
    segments instead of rounding down to resolve this issue.

    Signed-off-by : Matt Robinson <git@nerdoftheherd.com>

    • [DH] libavformat/dashdec.c
  • FFMPEG how to split avi to multi parts [on hold]

    1er juin 2014, par user3695970

    am running ffmpeg.exe from windows xp i want to know is there a command i can cut .avi movie file into several parts without a setting start and end time.

    1 : is it possible to set a value of MB for example slick every 40mb till it reaches end of movie file

    2 : is it possible to cut movie in to several parts by 10minutes or custom value time.

    please guys you people have alot of experience in this field i seek help please anybody thanks.

    ffmpeg -i largefile.mp4 -t 00:50:00 -c copy smallfile1.mp4 -ss 00:50:00 -c copy smallfile2.mp4

    tried this but i need better example a 1 line of command to slice entire movie into parts please

  • Node-webkit : audio/video format accepted

    30 avril 2014, par user3360048

    I want to insert a video in my app running with node-webkit.

    Initially I’ve a .mp4 file, that wasn’t read. I’ve read the exlanation so I open a terminal and check my file :

    file movie.mp4
    > movie.mp4: ISO Media, MPEG v4 system, version 2

    I try to convert video in this way :

    ffmpeg -i movie.mp4 -an -vcodec libx264 -crf 23 movie.mov

    But still in this way didn’t play. So i try again :

    ffmpeg -i movie.mp4 -acodec copy -vcodec libx264 -f mov movie.mov

    In this case my video is been visualized, but with no audio.

    How can I do ?