Recherche avancée

Médias (91)

Autres articles (67)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5543)

  • modify code of ffmpeg [closed]

    12 juillet 2012, par toutou0091

    Possible Duplicate :
    ffmpeg code changes

    To install FFmpeg, I followed the instructions in this web site http://buildall.wordpress.com/2011/05/09/how-to-compile-and-install-ffmpeg-in-ubuntu-11-04/ and it works well. In the file "mpegvideo_enc.c" there is a variable called "qp". I added in this file in the istruction printf to display this varaible. I redid after : ". / configure" and "make" and it works as well. The Result of this compilation gives no executable file. I would like to know why the printf that I added in the code is not displayed ?

  • iterate through linex directory to apply same line of code

    25 juillet 2018, par J.D

    In my terminal (Linux), I have a directory of videos (001.mp4, 002.mp4 ... 300.mp4) that I want to split into frames using ffmpeg (ffmpeg -i 1.mp4 -vf fps=20 frame%04d.jpg -hide_banner). How can I apply this code to every video in the directory, specifically making the frames generated in a folder labeled after the video’s name (001.mp4 frames generated in a folder called 001). Running the code on a single video would generate the frames directly in that working directory. Note : the ffmpeg code must be changed to fit the filename each time.

  • lavf/hlsenc : Do not mix declarations and code.

    16 novembre 2018, par Carl Eugen Hoyos
    lavf/hlsenc : Do not mix declarations and code.
    

    Fixes the following warnings :
    libavformat/hlsenc.c : In function 'hls_write_trailer' :
    libavformat/hlsenc.c:2364:17 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    uint8_t *buffer = NULL ;

    libavformat/hlsenc.c:2372:17 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0) ;

    libavformat/hlsenc.c:2379:13 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    int range_length = 0 ;

    • [DH] libavformat/hlsenc.c