Recherche avancée

Médias (91)

Autres articles (34)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (5876)

  • Video encoded with ffmpeg not playing in Chrome

    15 décembre 2014, par Meep3D

    I’ve been trying just about every single permutation of options on ffmpeg to try to get a transcoded video to display on Chrome - OSX 39.0.2171.71 (64-bit) - so far nothing has worked.

    The settings I am currently using look like :

    /usr/local/Cellar/ffmpeg/2.4.3/bin/ffmpeg -i source.m4v -vcodec libx264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -preset slower -crf 23 -vf scale=640:360 target.mp4

    but I’ve tried various options from various other answers with no success.

    The video-js demo video works fine, so it must be possible somehow. Here’s a dump of the encoded video :

    *** General Parameters ***
    - Name:  test-1 (2).mp4
    - Container:  MP4 - QuickTime
    - Size:  3.45 MB
    - Duration:  32s 299ms
    - Bitrate:  856 Kbps

    *** Video Track Parameters ***
    - Format:  H.264/MPEG-4 AVC
    - Bitrate:  Max.: --- / Average: 721 Kbps / Min.: ---
    - Frame rate (fps):  Max.: --- / Average: 30.000 / Min.: ---
    - Encoding profile:  Baseline@L3.0
    - Image size:  640*360
    - Pixel Aspect Ratio:  Undefined
    - Display Aspect Ratio:  16:9
    - Interlacing:  Progressive

    *** First Audio Track Parameters ***
    - Format:  AAC - MPEG-4 audio
    - Bitrate:  128 Kbps
    - Resolution:  Undefined
    - Rate:  44.1 KHz
    - Channel(s):  2 (stereo)
    - Position:  Front: L R
  • How do I configue ffmpeg [on hold]

    5 décembre 2014, par user3077458

    I use CloudConvert to convert video files to a specific format. i wonder if there is someway to make ffmpeg command line to do the exact same as CloudConvert only no need to upload the file everytime.

    Conversion options from CloudConvert :

    Video :

    • Video Cocec : H264
    • Video Profile : None
    • Video Constant Quality(CRF) : 23(normal quality)
    • Video Aspect Ratio : Nochange — I will change this depending on the video Apect
    • Video Resoluten : 640x480 (480p) — This too
    • Video FPS : 20fps
    • Video Transpose : No change

    Audio :

    • Audio Codec : AAC
    • Audio Bitrate : 128 kbps
    • Audio Channels : No Change
    • Audio Frequency : No Change
    • Audio Normalization : No Change

    Other :

    • "Checked" "Move the index (moov atom) to the beginning of the file.
      This option is needed, if the output file is used for HTTP
      streaming."

    Thanks for help !

  • Ffmpeg transcoding video .vob (vcodec MPEG-2)

    5 mai 2017, par Aminesrine

    I want to transcode a file .vob to get the bitrate 1500 with 16/9 ratio
    I execute this command ffmpeg

    ffmpeg -i /path/video.vob -vcodec libx264 -vf scale=1280:-2 -strict experimental -b:v 1308k -b:a 192k -ar 44100 -r 25 /path/video_1500.mp4 2>&1

    But I got a video with size : 1280 x 1024.
    What options I should add to my command ffmpeg ?