Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (57)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (7915)

  • Android Third Party Media Player SDK to replace Default MediaPlayer under Apache Licence [on hold]

    22 avril 2015, par Amanda Fernandez

    I googled a lot and found that there is no way we can alter the buffer size of default media player. So, need to use custom player. I found 2 libraries :

    1. ffmeg
    2. gStreamer

    But both are under GNU licence.

    I have confusion on its licence.If I’m using these 2 libraries, then do I have to make my app source code open source.?
    Also, came across brightcove library. It’s native videoplayer NDK. Can It be sued for streaming audio.

    Is there any other 3 party libraries available for media player ?

  • avdevice/dshow : add media type info to get_device_list

    21 décembre 2021, par Diederick Niehorster
    avdevice/dshow : add media type info to get_device_list
    

    The list returned by get_device_list now contains info about what media
    type(s), if any, can be provided by each device.

    Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
    Reviewed-by : Roger Pack <rogerdpack2@gmail.com>

    • [DH] libavdevice/dshow.c
  • FFMpeg doesnt insert sound to converted media files

    4 avril 2020, par In-my-country-we-dont-use-name

    I am new at FFMpeg. I use this code to convert media files to WebM and MP4 formats :

    &#xA;&#xA;

    (It's php)

    &#xA;&#xA;

      // MP4&#xA;    $video_mp4 = $output_name . &#x27;.mp4&#x27;;&#xA;    exec($ffmpeg . &#x27; -i "&#x27; . $uploaded_file . &#x27;" -c:v libx264 -an "./converted/&#x27; . $video_mp4 . &#x27;" -y 1>convert.txt 2>&amp;1&#x27;, $output, $convert_status[&#x27;mp4&#x27;]);&#xA;&#xA;    // Debug&#xA;     echo &#x27;<pre>&#x27; . print_r($output, 1) . &#x27; </pre>&#x27;;&#xA;&#xA;    // WebM&#xA;    $video_webm = $output_name . &#x27;.webm&#x27;;&#xA;    exec($ffmpeg . &#x27; -i "&#x27; . $uploaded_file . &#x27;" -c:v libvpx -c:a libvorbis -an "./converted/&#x27; . $video_webm . &#x27;" -y 1>convert.txt 2>&amp;1&#x27;, $output, $convert_status[&#x27;webm&#x27;]);&#xA;&#xA;    // Debug&#xA;

    &#xA;&#xA;

    The code converts media files but the converted media files (they are in MP4 and WebM formats) haven't any sound.

    &#xA;&#xA;

    Can you write a true convert command if my code is false ?

    &#xA;&#xA;

    Also I wonder about -movflags +faststart commands. What are they, can you explain ?

    &#xA;&#xA;

    I added "aac" command to WebM traslator command as how did "llogan"&#xA;say in an answer which is on below link :

    &#xA;&#xA;

    FFMPEG mkv to mp4 conversion lacks audio in HTML5 player

    &#xA;&#xA;

    but after I added the command, my media files haven't been converted.

    &#xA;