Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (8139)

  • How can I convert *.flv file to *.ts file using FFmpeg on command line ?

    15 mai 2020, par Defonds

    How can I convert *.flv file to *.ts file using FFmpeg on command line ? Is there any document about this ?

    



    Best Regards,
Defonds

    


  • Cannot join mp3 file and avi file with ffmpeg

    13 novembre 2014, par RULE101

    I am using this code to join an mp3 file and video file with ffmpeg

    ffmpeg -i /file1.mp3 -ab 128k -i /file2.avi  -vcodec copy -f avi /file3.avi

    But this code gives that error

    Option ab (audio bitrate (please use -b:a)) cannot be applied to input file /file1.mp3 -- you are trying to apply an input option to an output file or vice versa. Move this option before the file it belongs to.
    Error parsing options for input file /file1.mp3.
    Error opening input files: Invalid argument

    How can i do this job ?

  • How to keep the orientation number(exif) after converting from a video file to a image file by a ffmpeg command

    24 novembre 2023, par user27240

    The command below is working perfectly fine for my environment except it deletes the orientation number (EXIF) of the image file after being converted from a video file.

    


    System info :

    


      

    • FFmpeg 2.2.2
    • 


    • CentOS 6 (x86_64)
    • 


    


    I'd like to know how to keep the orientation number(exif) of the image with the command line below(it also have to keep the original purpose of its functionality which is to convert a video to a image from one directory to another.). I'd appreciate if anyone could help me out.

    


    for i in /path/to/inputs/*.mp4; do ffmpeg -i "$i" -frames:v 1 "/path/to/outputs/$(basename "$i" .mp4).jpg"; done