Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (75)

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

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5986)

  • Java execute command doesn't work in code

    27 août 2017, par Ariana

    I am calling java.lang.Runtime.exec(...) in my Java program to run a command (some FFMPEG commands) simply passed to my function :

       private static void RunCommand(String command) throws InterruptedException {
           try {
               // Execute command
               Process proc = Runtime.getRuntime().exec(command);
    }
    }

    It runs OK for simple FFMPEG cases such as ffmpeg -i input.avi -c copy output.avi.

    But for one of the commands, apparently it doesn’t run. When I copy/paste the exact String in command line, I am able to run it and see the output file.

    ffmpeg -i "concat:/home/temp10.avi|/home/p2.avi|/home/temp15.avi" -c copy -y /home/output.avi

    Which is the following in code :

    String c4="ffmpeg -i \"concat:"+dir+temp1+"|"+dir+ad+"|"+dir+temp3+"\" -c copy -y "+dir+output;

    What is going on ? Any guesses why it doesn’t run in code ? If the " is causing the problem, why the corresponding string looks good ?!

  • ffmpeg getting Invalid UE golomb code when saving udp multicast to file

    30 août 2019, par Stuart

    I am using ffmpeg to capture a UDP multicast stream and save it to a file but I’m having an issue with an "Invalid UE golomb code"

    Command :

    ffmpeg -i "udp://238.0.0.1:1234" -c copy -f segment -segment_time 900 -segment_atclocktime 1 -reset_timestamps 1 -strftime 1 $datestamp.mp4 -report

    This works fine for around 3-5 minutes and then freezes without an errors or indication why, the only thing I think it could be is the following error is spammed in the log file ;

    Invalid UE golomb code-1.0 size=N/A time=00:00:09.97 bitrate=N/A

    The only other thing I can see is the following in the log file ;

    unknown SEI type 229

    If someone could point help me out here that would be great.

    Thanks.

  • segment time in ffmpeg c code

    10 mai 2018, par TraXxX

    I’m using remuxing.c

    I’m trying to add segment option to code like this :

    AVDictionary* headerOptions = NULL;
    av_dict_set(&headerOptions, "segment_time", "10", 0);
    avformat_write_header(&ofmt_ctx, &headerOptions);

    it’s not working