Recherche avancée

Médias (91)

Autres articles (69)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (5871)

  • Why does ffmpeg4android fail on Galaxy S6 ?

    26 novembre 2015, par Andrei

    I have created an app that uses the ffmpeg4android library found here :
    http://androidwarzone.blogspot.co.il/2011/12/ffmpeg4android.html

    I succesfully managed to encode & crop video using the following command :
    "ffmpeg -y -i [input_video_path] -preset ultrafast -strict -2 -vf crop=480:480 :[startX]:0 -r 25 -ab 48000 -ac 2 -ar 22050 -b 2097k [outputPath]"

    This command works on several devices : motorola G (api 22), galaxy s4 being some of them.

    Yet, on galaxy S6 it crashes when executing the command.
    In the ffmpeg log, it says that it does not recognize the preset option. Can anyone help me understand why and what is the proper fix ?

  • Record on live stream material

    6 juillet 2015, par Sami H

    I have a multiple live feeds from TV card in (udp) and I want a 6h timeshift buffer.

    I have searched and found the -segment_time in FFMPEG.
    But thing is i want the "record" to stream out (rtmp publish) continuously as if it was live material as well only with a 6h difference.

  • Android MediaMetadataRetriever.METADATA_KEY_DATE gives only date of video on galaxy S7

    3 octobre 2016, par Zaid Bin Tariq

    I am writing a code to get video creation date and time from metadata, i am using following code to get creation date

    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
    retriever.setDataSource(path_to_video);
    String date = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE);

    it works perfect on all devices except Samsung Galaxy S7, it returns only date in "YYYY MM DD" format, no time stamp i need both date and timestamp.

    any help in this regard is much appreciated.