Recherche avancée

Médias (91)

Autres articles (90)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (5435)

  • Can't obtain information with ffmpeg to Smooth Streaming Manifest file

    4 mars 2015, par Alberto

    I’m trying to get details for a stream of protocol Microsoft Smooth Streaming, with ffmpeg tools (ffprobe and ffplay) but when I run the next command :

    ffprobe -i http://b31282.cdn.telefonica.com/31282/Manifest

    I obtain this :

    http://b31282.cdn.telefonica.com/31282/Manifest: Invalid data found when processing input

    I assume that this Manifest file is correct and complies with standards of Smooth Streaming . This is a brief extract of Manifest file :

    <smoothstreamingmedia majorversion="2" minorversion="0" duration="0" timescale="10000000" islive="TRUE" lookaheadfragmentcount="2" dvrwindowlength="6000000000" canseek="TRUE" canpause="TRUE">
     <protection>
       <protectionheader systemid="9a04f079-9840-4286-ab92-e65be0885f95">oioAAAIAAQCUAjwAV...</protectionheader>
     </protection>
     <streamindex type="audio" language="esp" subtype="" chunks="0" timescale="10000000" url="QualityLevels({bitrate})/Fragments(audio_esp={start time})"></streamindex>
     <streamindex type="video" language="" subtype="" chunks="0" timescale="10000000" url="QualityLevels({bitrate})/Fragments(video={start time})"></streamindex>
    </smoothstreamingmedia>

    Is a Fedora 21 and ffmpeg version and configuration is :

    ffmpeg version git-2015-02-27-d490b26
    configuration: --enable-gpl --enable-nonfree --enable-libfdk_aac --enable-libopus --enable-libvorbis --enable-libvpx --enable-libx264
    libavutil         54. 19.100        
    libavcodec        56. 26.100          
    libavformat       56. 23.105          
    libavdevice       56.  4.100                  
    libavfilter        5. 11.102          
    libswscale         3.  1.101        
    libswresample      1.  1.100          
    libpostproc       53.  3.100

    PD : I prefer use only ffmpeg tool

    Thanks for all

  • Using if statement in ffmpeg

    3 février 2024, par Diok

    is it possible using if/else statement in ffmpeg ?

    &#xA;&#xA;

    I would want to tell ffmpeg if dimension of any video lower than 480p do not touch the height or width otherwise do encode and resize it to 480p, here's my command but it always scale up the video if the video lower than 480p

    &#xA;&#xA;

    ffmpeg -i input.mp4 -c:v libx264 -crf 31 -me_method umh -bf 0 -vf scale=480:-2 out.mp4&#xA;

    &#xA;&#xA;

    Note that i dont want to use any programming language because it's on windows cmd.

    &#xA;

  • How to install FFMPEG on Node/Meteor server ?

    30 décembre 2014, par Mahendra

    I’m working on a meteor project where I need support of ffmpeg for converting the audio files. I’m able to do this in my local system in meteor language. When I’m pushing the code to live server I am facing an issue

                     "/bin/sh: 1: ffmpeg: not found".

    I didn’t install ffmpeg on server. I do’t know how to install it on meteor server. If anyone knows about it let me know, that will be very useful for me.

    I appreciate your help.

    Thanks.