Recherche avancée

Médias (91)

Autres articles (83)

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

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

  • FFprobe or FFMpeg Get length of file in special time

    27 septembre 2016, par mohsen nayyeri

    I want to get start bit of video file.

    Example :
    Output of FFmpeg

    frame=  199 fps= 24 q=25.0 size=    2919kB time=00:00:09.92
    bitrate=2410.3kbits/

    I have time and i want to give size.
    I want to get start bit size from time. In this example i have time=00:00:09 and i want give 2919kB.

    Please help me.

  • %configure - unknown option —build

    18 janvier 2016, par Naftuli Tzvi Kay

    I’m trying to build and package FFMPEG for Fedora 23 with my own compile options and everything.

    Unfortunately, I’m trying to use the %configure directive and it isn’t working :

    Unknown option "--build=x86_64-redhat-linux-gnu".
    See ./configure --help for available options.

    If I try to see what the %configure clause does, here’s what I see :

     CFLAGS="${CFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic}" ; export CFLAGS ;
     CXXFLAGS="${CXXFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic}" ; export CXXFLAGS ;
     FFLAGS="${FFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -I/usr/lib64/gfortran/modules}" ; export FFLAGS ;
     FCFLAGS="${FCFLAGS:--O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -I/usr/lib64/gfortran/modules}" ; export FCFLAGS ;
     LDFLAGS="${LDFLAGS:--Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld}"; export LDFLAGS;
     [ "1" = 1 ] && for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) ; do
         [ -f /usr/lib/rpm/redhat/$(basename $i) ] && /usr/bin/rm -f $i && /usr/bin/cp -fv /usr/lib/rpm/redhat/$(basename $i) $i ;
     done ;
     [ "1" = 1 ] && [ x != "x-specs=/usr/lib/rpm/redhat/redhat-hardened-ld" ] &&
         for i in $(find . -name ltmain.sh) ; do
           /usr/bin/sed -i.backup -e 's~compiler_flags=$~compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"~' $i
         done ;
     ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu \
       --program-prefix= \
       --disable-dependency-tracking \
       --prefix=/usr \
       --exec-prefix=/usr \
       --bindir=/usr/bin \
       --sbindir=/usr/sbin \
       --sysconfdir=/etc \
       --datadir=/usr/share \
       --includedir=/usr/include \
       --libdir=/usr/lib64 \
       --libexecdir=/usr/libexec \
       --localstatedir=/var \
       --sharedstatedir=/var/lib \
       --mandir=/usr/share/man \
       --infodir=/usr/share/info

    Since %configure tries to set the --build parameter and FFMPEG doesn’t like that, it fails.

    However, I really want to get the CFLAGS and LDFLAGS and all of the hardening options that come provided with the distribution without baking these into my SPEC file.

    Is there a way to override the %configure task to omit the --build parameter and include everything else ?

  • Android Screen mirroring via rtsp server

    7 juillet 2017, par Anıl Mert Ar

    I was trying to mirror my android phone’s screen to my PC. I actually did that thanks to ffplay and adb. But my question is how I can send it to an rtsp server. Do I need any additional stuff besides them ?

    What I can do :

    adb exec-out screenrecord --output-format=h264 - | ffplay -

    I completely didn’t understand how to send this output to an rtsp server and I don’t know if there is additional thing rather than rtsp I will be so appreciated if you help me. Thanks.