Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (36)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (9318)

  • Screenshot of the Nexus One from adb ?

    23 avril 2015, par Marcus

    My goal is to be able to type a one word command and get a screenshot from a rooted Nexus One attached by USB.

    So far, I can get the framebuffer which I believe is a 32bit xRGB888 raw image by pulling it like this :

    adb pull /dev/graphics/fb0 fb0

    From there though, I’m having a hard time getting it converted to a png. I’m trying with ffmpeg like this :

    ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb8888 -s 480x800 -i fb0 -f image2 -vcodec png image.png

    That creates a lovely purple image that has parts that vaguely resemble the screen, but it’s by no means a clean screenshot.

  • Find bytes range of webm video for specified segment

    21 mai 2024, par M2sh

    I have a Video in webm format (like video.webm the duration is 60 seconds)
    
I want to get specified segment of video (i.e split video) with http header range (Range : 100-200).
    
In another word :
    
I want to get a section of video (e.g. from second 4 to 12) but I don't want to use any converter like ffmpeg. I want to send http request to server and get specified range of webm file.

    


    Can I use this method (http range header) ?

    


    Thanks

    


  • Find bytes range of webm video for specified segment

    2 septembre 2015, par M2sh

    I have a Video in webm format (like video.webm the duration is 60 seconds)
    I want to get specified segment of video (i.e split video) with http header range (Range : 100-200).
    In an other word :
    I want to get a section of video (e.g. from second 4 to 12) but i don’t want to use any converter like ffmpeg. i want to send http request to server & get specified range of webm file.

    Can i use this method (http range header) ?

    Thanks