Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5923)

  • ffmpeg for archval and convertability

    26 juillet 2021, par Satya

    I've got a couple hundred gigs of *.dv files. I'd like to convert them to H.264 or something else or even leave them alone. The purpose is archival, with an eye to maximum convertability especially to DVD. The content is family videos.

    


    Would this be fine ?

    


    ffmpeg -i input.dv \
    -c:v libx264 -preset slower \
    -crf 17 \
    -pix_fmt yuv420p \
    output.mp4


    


    I went with the slower preset because encoding time isn't an issue and I'd like a smaller file size. crf 17 is for least-lossy while being widely playable. I read somewhere that yuv420p is needed for some Quicktime players.

    


    Should I throw in -c:a aac for AAC audio ? The audio is voice only, no need for music-hall quality.

    


    I looked at https://trac.ffmpeg.org/wiki/Encode/H.264 for previous research and that's where I got those settings, but it is silent on the audio settings.

    


  • instalation ffmpeg in Ubuntu [migrated]

    27 août 2014, par Chintan Gor

    I am using following steps for installing ffmpeg-php extension in Ubuntu

    1. Download ffmpeg-php-0.5.2.1.tbz2

    2. extract it

    3. go to this directory

    4. run this "phpize"

    5. ./configure && make

    but when I am running step 5 I got this error message "ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the —enable-shared option
    "

    what to do please someone help me I am fresher in Linux

    I already install ffmpeg in this machin using this steps
    https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu

    Now I am installing extension for PHP

    using this steps from this http://ffmpeg-php.sourceforge.net/

    INSTALLATION

  • Concat 2 H264 mov into mp4 using ffmpeg or other ?

    19 septembre 2013, par pixelwiz

    We recently bought a JVC GY-HM650U camcorder. One of the things it can do is record into a "web" format at the same time it records HD. However, the problem we've ran into is that it splits up the recording about every 30 minutes. I've contacted the manufacturer and they might fix the firmware in the future, but I need to do something about it now. So the camera produces an MOV file, but it's supposed to be a H.264 mp4 under the surface. I tried to follow the steps here : http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20concatenate%20%28join,%20merge%29%20media%20files but was not successful. I can either merge the two files into one mov, and if I try to play the MOV in JWPlayer for some reason I lose the audio. If I try to go into a .mp4 I get an error. I found some 3rd party software for joining video files without having to re-encode them if they are already encoded the same way, but none proved successful at producing a playable file with audio. Any suggestions ?