Recherche avancée

Médias (91)

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (12821)

  • Using FFMPEG and PHP to encode HLS video on the fly

    21 avril 2024, par mrsmith

    I'm re-encoding a MP4 video to HLS using FFMPEG with PHP. I'm trying to then directly serve to the output to a HTML page's <video></video> tag. The following script (encode.php) encodes the video as I require and it works if I use the script url directly in VLC player for example but I'm struggling to get the gtml page to play it. The resulting video file should be compatible with most browsers. I use video.src = &#x27;encode.php&#x27; on my player html page.

    &#xA;

    Any help appreciated.

    &#xA;

    &lt;?php&#xA;&#xA;$input_video = &#x27;whatever.mp4&#x27;;&#xA;&#xA;// video passthrough&#xA;// hls format&#xA;// audio (english strems only) to aac (6 channel)&#xA;// output to stdout&#xA;&#xA;$ffmpeg_command = &#x27;ffmpeg -i &#x27; . escapeshellarg($input_video) . &#x27; -map 0:v -c:v copy -map 0:a:m:language:eng -c:a aac -ac 6 -b:a 320k -f hls -hls_time 30 -hls_list_size 120 -start_number 0 -&#x27;;&#xA;&#xA;$handle = popen($ffmpeg_command, &#x27;rb&#x27;);&#xA;&#xA;header(&#x27;Content-Type: application/vnd.apple.mpegurl&#x27;);&#xA;header(&#x27;Content-Disposition: inline; filename="output.m3u8"&#x27;);&#xA;&#xA;// stream the output to the browser&#xA;fpassthru($handle);&#xA;pclose($handle);&#xA;?>&#xA;

    &#xA;

  • android ffmpeg command line

    8 avril 2014, par user3509984

    i am new android develop.i need to change video color like vintage ,sepia etc .i google many hours at last i found FFMPEG to achieve tat.i had command line for ffmpeg to convert video color ffmpeg -y -i /sdcard/videokit/in.mp4 -strict experimental -vf transpose=1 -s 160x120 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k /sdcard/videokit/out.mp4

    i need to know how to compile tat in android. pls provide some tutorial to achieve tat.

    i found one link tat command will work..but it give oly trai version...
    tat link is
    http://androidwarzone.blogspot.in/2011/12/ffmpeg4android.html

    pls provide some tutorial to compile tat command in ffmpeg
    (sorry for my english)
    thanks in advance

  • Can't generate libx264.dll. MinGW : not c Compiler found

    20 avril 2015, par Sandie C

    It’s my first post in a forum ever (and in english...) Any suggestion is welcomed.

    So let’s started !

    My global goal is to recorder/transcoding and dispay an IP Camera stream from a .bat whitch calling vlc.

    I want an asf container containing h264 and aac.


    .bat :

    cd C :\Program Files (x86)\VideoLAN\VLC

    vlc rtsp ://root:root@ip_adresse/media.amp —sout "#transcode vcodec=x264, vb=112 , acodec==aac, fps=25:duplicatedst=display,dst=standardaccess=file,mux = asf,dst=flux.asf" -v


    when I first execute this, VLC told me that H264 encoder was not found, so I decided to compile x264.

    I followed this link

    http://www.ayobamiadewole.com/Blog/How-to-build-x264-or-libx264.dll-in-Windows

    I succeed to make the .exe but and when I got to

    ./configure —disable-cli —enable-shared —extra-ldflags=-Wl,—output-def=libx264.def

    minGW shell indicates : not working c compiler found

    I tried to find some answer, but i didn’t found a good one.

    Does anyone have an idea of what i’m doing wrong ?