Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (72)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (8913)

  • ffmpeg exact start and end times

    19 juin 2017, par Eng. M.Hamdy

    I’ve searched a lot but didn’t find what I nedd.
    I use this command :

    ffmpeg -ss <start> -i <srcfile> -t <duration> -c copy <dstfile>
    </dstfile></duration></srcfile></start>

    to copy a part of the video, but the output file start time and duration may differ than "start" and "duration" specified.
    I understand that ffmpeg seeks to the nearest Keyframe and that precise seeking to a timestamp is not possible unless re-encoding the video (I tried that but the output video losses quality !).
    It’s important to me to know the exact start and end timestamp that ffmpeg use to generate the output, because I use this info to adjust subtitle timing.
    Is there any way to make ffmpeg report start timestamp and end timestamp ?
    Or else : Is there any way to know the previous and next keyframes to specific Timestamp, so I can adjust the video cut markers in my project to fit nearest keyframes ?
    Thanks.

    Update :
    - Is it possible to seek to the second keyframe, and to the keyframe before the last one ?
    - what is the time interval between 2 keyframes ?

  • avcodec/crystalhd : Explicitly set frame pts at all times

    23 avril 2017, par Philip Langdale
    avcodec/crystalhd : Explicitly set frame pts at all times
    

    Previously, the pts value was initialised to AV_NOPTS_VALUE and so
    it was not necessary to always set it. Now, with the new-new decode
    API, this is no longer true. I'm not sure why I avoided setting the
    pts when the decoder value was also AV_NOPTS_VALUE - it clearly
    wouldn't have changed anything previously, but here we are.

    Failing to do this, means the frame pts will be some random uninitalised
    value.

    • [DH] libavcodec/crystalhd.c
  • Looping video for x times with ffmpeg [duplicate]

    18 mars 2017, par senty

    This question already has an answer here :

    I am trying to loop a video input for x times with ffmpeg. I tried the solution that I found on this answer, but it is throwing a syntax error for me

    ffmpeg -f concat -i &lt;(for i in {1..4}; do printf "file '%s'\n" input.mp4; done) -c copy output.mp4

    PHP Parse error : syntax error, unexpected ’’\n" input.mp4 ; done) -c copy ’ (T_CONSTANT_ENCAPSED_STRING), expecting ’,’ or ’)’ in /home/vagrant/Code/index.php


    I also tried this approach, but this time I am getting another error

    ffmpeg -i input.mp4 -c copy input.mkv
    ffmpeg -stream_loop 4 -i input.mkv -c copy looped.mp4

    Unrecognized option ’stream_loop’.

    Error splitting the argument list : Option not found


    Am I missing out something or is it related with the versions ? I use ffmpeg v2.8.11. I also use php and shell_exec('') for each line.